#kb-language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.kb-lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.kb-lang-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.kb-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.kb-lang-button.open .kb-arrow {
    transform: rotate(180deg);
}

.kb-lang-dropdown {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    overflow: hidden;
}

.kb-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 15px;
    text-align: left;
}

.kb-lang-option:last-child {
    border-bottom: none;
}

.kb-lang-option:hover {
    background: #f5f5f5;
}

.kb-lang-option.active {
    background: #e8f5e9;
}

.kb-flag {
    font-size: 20px;
}

.kb-lang-name {
    flex: 1;
}

.kb-check {
    color: #4CAF50;
    font-weight: bold;
}

@media (max-width: 768px) {
    #kb-language-switcher {
        bottom: 10px;
        right: 10px;
    }
    
    .kb-lang-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}
