/**
 * VillaBreak Menu Translations - Stijl voor taal-switch
 */

.vbmt-switch {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 16px;
    padding: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    background: transparent;
}

.vbmt-switch button {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1.5px solid currentColor;
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    min-width: 50px;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.55;
    transition: opacity 0.15s ease, background-color 0.15s ease;
    line-height: 1.2;
}

.vbmt-switch button:hover,
.vbmt-switch button:focus-visible {
    opacity: 0.85;
    outline: none;
}

.vbmt-switch button.vbmt-active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
    .vbmt-switch button {
        padding: 10px 18px;
        font-size: 15px;
    }
}

@media print {
    .vbmt-switch { display: none !important; }
}
