/* * Floating Language Switcher Styles
 */

/* Hide the original Google Translate dropdown */
.skiptranslate {
    display: none !important;
}

/* Main container for the floating buttons */
.fls-switcher-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    gap: 10px; /* Space between the buttons */
}

/* Style for the individual language buttons */
.fls-button {
    padding: 10px 15px;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hover effect for the buttons */
.fls-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Remove the top bar created by Google Translate */
body {
    top: 0 !important;
}
#goog-gt-tt {
    display: none !important;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

