/**
 * Email notification styles for empty search results
 */

.alert-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.email-notification-container {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    animation: fadeInUp 0.3s ease-out;
}

.email-notification-section {
    padding: 1.5rem;
}

.email-notification-section h6 {
    color: #0d6efd;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.email-notification-section .form-control {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
}

.email-notification-section .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.email-notification-section .btn {
    border-radius: 0.375rem;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
