﻿/* Container for language buttons */
.iuh__lang-container {
    display: flex;
    padding: 2px;
    background-color: #ffffff;
    border-radius: 40px;
}}

/* General button style */
.iuh__lang {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    background-color: #fff;
    border-radius: 50%;
    /* border: 0px solid #FDB72A; */
    /* cursor: pointer; */
    transition: all 0.3s ease;
    /* margin: 0 5px; */
    background-color: #ffffff;
}
}

    /* Hover effect for language buttons */
    .iuh__lang:hover {
        background-color: rgba(255, 255, 255, 0.8);
        border-color: #0d1366;
    }

    /* Active state for language buttons */
.iuh__lang[data-active="true"] {
    background-color: #FDB72A;
    border-color: #FDB72A;
    border-radius: 40px;
    padding: 2px;
}

/* Icon styles */
.iuh__lang-icon {
    width: 24px; /* Smaller icon size */
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect on the icon */
.iuh__lang:hover .iuh__lang-icon {
    transform: scale(1.1); /* Slightly enlarge the icon */
}

/* Active state for the icon */
.iuh__lang[data-active="true"] .iuh__lang-icon {
    border-color: #fff; /* White border when active */
}

/* Optional: Style for text if needed */
.iuh__lang-btn-link .lang-label {
    margin-left: 5px;
    font-weight: 600;
    color: #0d1366;
    font-size: 14px;
}
