/**
 * AIHR Email Validation Styles
 * Styling for email typo correction suggestions
 */

.aihr-email-suggestion {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 8px 12px;
    /* margin-top and margin-bottom are set dynamically by JavaScript */
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.2s ease-out;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.aihr-email-suggestion:hover {
    background: #e9ecef;
    border-color: #007bff;
}

.aihr-email-suggestion .suggestion-text {
    color: #495057;
}

/* Animation for suggestion appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aihr-email-suggestion {
        padding: 10px 12px;
        font-size: 15px;
    }
}
