/* language-switcher.css - Add to your existing CSS files */

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.language-btn {
    border-radius: 20px;
    border-style: solid;
    border-color: var(--purple-accent, #7272ec);
    border-width: 1px;
    padding: 8px 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: rgba(114, 114, 236, 0.1);
}

.language-btn.active {
    background-color: var(--purple-accent, #7272ec);
}

.language-btn.active .div64 {
    color: #ffffff;
}

/* Responsive adjustments for mobile */
/*@media screen and (max-width: 768px) {*/
/*    .language-switcher {*/
/*        gap: 4px;*/
/*    }*/

/*    .language-btn {*/
/*        padding: 6px 10px;*/
/*        height: 32px;*/
/*    }*/

/*    .div64 {*/
/*        font-size: 12px;*/
/*    }*/
/*}*/