/* Toast and animations */

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.animate-slide-in {
    animation: slideIn 0.3s ease-out;
}

.animate-slide-in-up {
    animation: slideInUp 0.3s ease-out;
}

/* Cookie banner styling */
#cookieBanner {
    animation: slideInUp 0.4s ease-out;
}

/* Call timer enhanced styling */
#callTimer {
    font-weight: bold;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

/* Input validation errors */
.validation-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.border-red-500 {
    border-color: #ef4444;
}

.bg-red-50 {
    background-color: #fef2f2;
}

/* Toast notification base */
#toast-notification {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}