/* I18N dil seçici — yalnız I18N_ENABLED açıkken yüklenir */
.i18n-login-lang {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 20;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.i18n-lang-form {
    margin: 0;
    display: inline;
}
.i18n-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.2;
    color: #333;
}
.i18n-lang-btn.is-active {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
    font-weight: 600;
}
.i18n-lang-flag {
    font-size: 16px;
    line-height: 1;
}
.i18n-lang-name {
    white-space: nowrap;
}
.i18n-user-lang {
    padding: 8px 12px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.i18n-user-lang-label {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.i18n-lang-btn--menu {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 4px;
    border-radius: 6px;
}
@media (max-width: 576px) {
    .i18n-login-lang {
        position: static;
        justify-content: center;
        padding: 12px 12px 0;
    }
    .i18n-lang-name {
        font-size: 11px;
    }
}

/* Admin TR/EN/PT sekme panelleri */
.i18n-locale-tabs {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.i18n-locale-tablist {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}
.i18n-locale-tab {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
}
.i18n-locale-tab.is-active {
    background: #fff;
    color: #0d6efd;
    box-shadow: inset 0 -2px 0 #0d6efd;
}
.i18n-locale-tab .i18n-lang-flag {
    margin-right: 4px;
}
.i18n-locale-has-value {
    color: #198754;
    margin-left: 4px;
}
.i18n-locale-panel {
    display: none;
    padding: 10px;
}
.i18n-locale-panel.is-active {
    display: block;
}
.i18n-locale-fields {
    margin-top: 8px;
}
.i18n-locale-fields .form-group {
    margin-bottom: 8px;
}
