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

.axls-inline {
    display: flex;
    gap: 4px;
    align-items: center;
}

.axls-lang-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    transition: background-color 0.2s, opacity 0.2s;
    opacity: 0.6;
    white-space: nowrap;
}

.axls-lang-item:hover {
    opacity: 1;
    background-color: rgba(0,0,0,0.05);
}

.axls-lang-item.axls-active {
    opacity: 1;
    font-weight: 600;
    background-color: rgba(0,0,0,0.08);
}

.axls-flag {
    font-size: 16px;
    line-height: 1;
}

.axls-label {
    line-height: 1;
}

/* Dropdown */
.axls-dropdown {
    position: relative;
    display: inline-block;
}

.axls-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: inherit;
    white-space: nowrap;
}

.axls-dropdown-toggle:hover {
    border-color: #bbb;
}

.axls-arrow {
    font-size: 10px;
    margin-left: 2px;
}

.axls-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    min-width: 140px;
    z-index: 9999;
    overflow: hidden;
}

.axls-dropdown.open .axls-dropdown-menu {
    display: block;
}

.axls-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.15s;
    white-space: nowrap;
}

.axls-dropdown-item:hover {
    background-color: #f5f5f5;
}

.axls-dropdown-item.axls-active {
    background-color: #eef;
    font-weight: 600;
}
