/* Engagement Popup Styles */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    padding: 10px;
}

.lang-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lang-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
    background: #fff;
}

.lang-flag {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.lang-name {
    font-weight: 700;
    font-size: 1rem;
}

.swal2-popup {
    border-radius: 20px !important;
    padding: 2em !important;
}

.swal2-title {
    font-size: 1.8rem !important;
    color: #007bff !important;
    margin-bottom: 20px !important;
}
