/* Language Switcher Toggle Widget - Direct Switch Button */
.mt-language-switcher-widget {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.mt-language-toggle-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    outline: none;
    padding: 0 !important;
}

.mt-language-toggle-button:hover {
    background-color: #34495e;
}


/* Hide all panel elements - not needed */
.mt-language-panel,
.mt-language-toggle-icon,
.mt-language-toggle-text {
    display: none !important;
    visibility: hidden !important;
}

/* Hide the language switcher content - used invisibly for functionality */
.mt-language-switcher-content {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
/* Print Styles */
@media print {
    .mt-language-switcher-widget {
        display: none;
    }
}
