﻿/* Header right side alignment */
.public-header-actions {
    align-items: center;
    gap: 12px;
}

/* Language dropdown */
.lang-dropdown .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(17,17,17,.12);
    background: rgba(255,255,255,.85);
    color: #111;
    font-weight: 600;
    line-height: 1;
}

    .lang-dropdown .lang-btn:focus {
        box-shadow: none;
    }

.lang-dropdown .lang-flag {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.06);
}

    .lang-dropdown .lang-flag img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.lang-dropdown .lang-menu {
    min-width: 220px;
    border-radius: 14px;
    padding: 8px;
}

.lang-dropdown .lang-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 10px 10px;
}

    .lang-dropdown .lang-item.active {
        background: rgba(0,0,0,.06);
        font-weight: 700;
    }

.lang-dropdown .lang-name {
    white-space: nowrap;
}

.lang-dropdown .lang-code-small {
    opacity: .65;
    font-size: 12px;
}
