/**
 * Layout styles for the current language display in toggle
 */
.current-lang-wrapper {
    display: inline-flex;
    align-items: center;
}

.current-lang-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-lang-content .pll-flag-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
    display: block;
}

.current-lang-content .pll-slug-text {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    line-height: 1;
}

/**
 * Styles for the language list dropdown
 */
.pll-list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pll-list-row {
    width: 100%;
    border-bottom: 1px solid #D9D1CB;
}

.pll-list-row:last-child {
    border-bottom: none;
}

.pll-list-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    text-decoration: none;
    transition: opacity 0.2s;
    width: 100%;
}

.pll-slug {
    font-weight: 700;
    color: #333;
}

.pll-check-icon {
    margin-left: auto;
    display: flex;
    align-items: center;
}