/* AH Language Switcher Widget */
.ah-lang-switcher-widget {
    display: inline-block;
}

/* Inline List Style */
.ah-switcher-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ah-switcher-item {
    display: inline-flex;
    align-items: center;
}

.ah-switcher-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ah-switcher-item a:hover {
    opacity: 0.8;
}

.ah-switcher-item.active a {
    font-weight: 700;
    text-decoration: underline;
    pointer-events: none;
}

.ah-flag {
    font-size: 1.2em;
}

/* Dropdown Style */
.ah-switcher-select {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
}