.custom-lang-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.lang-trigger {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px; /* Smooth radius as requested */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Shadow as requested */
    z-index: 9999;
    border: 1px solid #eee;
    overflow: hidden;
}

.custom-lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-header {
    padding: 10px 15px;
    font-size: 11px;
    color: #999;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}

.lang-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-item-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    text-align: left;
    color: #444;
    font-size: 14px;
    transition: 0.2s;
}

.lang-item-btn:hover {
    background: #f5f5f5;
}

.lang-list li.active .lang-item-btn {
    background: #f0f7ff;
    color: #0073aa;
    font-weight: bold;
}

.checkbox-icon {
    font-size: 12px;
    color: #28a745;
}
