/* Language Selector Styles */
.header-actions {
    margin-left: auto;
}

.header-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.header-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.header-button img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.dropdown-menu {
    min-width: 200px;
    padding: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.dropdown-item img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

.dropdown-item.active:hover {
    background: var(--primary-dark);
} 