/**
 * Flavor Translator — Language Switcher Styles
 */

.flavor-language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    gap: 5px;
    background: #fff;
    padding: 6px 8px;
    border-radius: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.flavor-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.flavor-lang-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.flavor-lang-btn.flavor-lang-active {
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Lithuanian flag colors */
.flavor-flag-lt {
    background: linear-gradient(180deg, #FDB913 33%, #006A44 33%, #006A44 66%, #C1272D 66%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Polish flag colors */
.flavor-flag-pl {
    background: linear-gradient(180deg, #fff 50%, #DC143C 50%);
    color: #333;
    text-shadow: none;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .flavor-language-switcher {
        bottom: 10px;
        right: 10px;
        padding: 4px 6px;
    }

    .flavor-lang-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
}
