
#toastNotification {
    position: fixed;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.85);
    color: #d1d5db;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.05s ease, transform 0.05s ease;
    max-width: 90%;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid var(--color-toast-border);
}

#toastNotification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

#toastNotificationTop {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(0, 0, 0, 0.85);
    color: #d1d5db;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.05s ease, transform 0.05s ease;
    max-width: 90%;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid var(--color-toast-border);
}

#toastNotificationTop.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

