/* ==========================================================================
   Toast Notification Styles
   ========================================================================== */

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification i {
    font-size: 1.2rem;
}

.toast-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.toast-error {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.toast-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
}

.toast-info {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

@media (max-width: 576px) {
    .toast-notification {
        left: 20px;
        right: 20px;
        transform: translateX(0) translateY(100px);
        bottom: 20px;
    }

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