/* Language Switch Styles - Extracted from _Layout.cshtml */

.language-switch {
    display: flex;
    gap: 4px;
    background: #3B2A1A;
    border-radius: 20px;
    padding: 4px;
    align-items: center;
}

.language-switch-btn {
    background: transparent;
    border: none;
    color: #CBBFAD;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

.language-switch-btn:hover {
    background: rgba(196, 154, 108, 0.2);
    color: #C49A6C;
}

.language-switch-btn.active {
    background: linear-gradient(135deg, #C49A6C 0%, #D1A76F 100%);
    color: white;
}

/* Language Selector in Dropdown */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    cursor: default;
}

.language-selector:hover {
    background: transparent !important;
}

.language-select {
    flex: 1;
    background: white;
    border: 1px solid rgba(196, 154, 108, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-select:hover {
    background: #f8f9fa;
    border-color: #C49A6C;
}

.language-select:focus {
    border-color: #C49A6C;
    box-shadow: 0 0 0 2px rgba(196, 154, 108, 0.2);
}

.language-select option {
    background: white;
    color: #000000;
    padding: 8px;
}

.language-select option:hover {
    background: #f8f9fa;
}

.language-select option:checked {
    background: #C49A6C;
    color: white;
}

/* Language switcher inline (for non-authenticated users) */
.language-switcher-inline {
    display: flex;
    gap: 4px;
    align-items: center;
}

.language-btn-inline {
    background: transparent;
    border: 2px solid #C49A6C;
    color: #CBBFAD;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn-inline:hover {
    background: rgba(196, 154, 108, 0.2);
    border-color: #D1A76F;
    transform: translateY(-1px);
}

.language-btn-inline.active {
    background: linear-gradient(135deg, #C49A6C 0%, #D1A76F 100%);
    border-color: #C49A6C;
    color: white;
}

.language-btn-inline .flag-icon {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 768px) {
    .language-switch {
        order: -1;
    }

    .language-switch-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 40px;
        min-height: 40px;
    }
}










