/* Toast Notification Styles - Premium Dark Theme (Admin Parity) */
#toastContainer {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #1a1a3e; /* var(--dark-2) */
    border: 1px solid rgba(255, 255, 255, 0.1); /* var(--glass-border) */
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* var(--transition) */
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast.toast-success { border-left: 4px solid #06d6a0; }
.toast.toast-danger { border-left: 4px solid #ef476f; }
.toast.toast-warning { border-left: 4px solid #f9c74f; }
.toast.toast-info { border-left: 4px solid #4cc9f0; }

.toast-message {
    color: #ffffff;
    font-size: 0.9rem;
    flex: 1;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.toast-close {
    background: none;
    border: none;
    color: #8b8bb5; /* var(--gray) */
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    #toastContainer {
        top: auto;
        bottom: 1.5rem;
        right: 1rem;
        left: 1rem;
        align-items: center;
    }
    .toast {
        width: 100%;
        min-width: auto;
        transform: translateY(120%);
    }
    .toast.show {
        transform: translateY(0);
    }
}
