/* Hide Google Translate Bar */
    .goog-te-gadget img{
        display:none !important;
    }
    body > .skiptranslate{
        display: none;
    }

/* Styling for the Google Translate button */
    #google_translate_element {
        display: inline-block;
        margin: 10px;
    }
    
    .goog-te-gadget {
        color: #fff !important;
        font-family: Arial, sans-serif;
        font-size: 14px;
        background: linear-gradient(315deg, rgb(255, 0, 22) 0%, rgb(167, 2, 27) 100%) !important;
        border-radius: 5px;
        padding: 10px 25px;
        text-align: center;
    }
    
    .goog-te-gadget-simple {
        background-color: #4CAF50 !important;
        border: none !important;
        color: #fff !important;
        border-radius: 5px;
        padding: 10px 25px;
        cursor: pointer;
    }
    
    .goog-te-menu-value {
        color: #fff !important;
    }
    
    .goog-te-menu-value span {
        color: #fff !important;
    }
    
    .goog-te-menu-value:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0ac";
        margin-right: 5px;
    }
    
    .goog-te-gadget-icon {
        display: none;
    }
    .VIpgJd-ZVi9od-l4eHX-hSRGPd{
        color: #fff !important;
    }
    
/* Base styles for button */
    .goog-te-combo {
        display: inline-block;
        width: auto;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        /*color: #fff;
        background-color: #007bff;
        border: 1px solid #007bff;*/
        border-radius: 0.25rem;
        cursor: pointer;
        transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    }
    
    
    /* Reset the default appearance */
    .goog-te-combo {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Dropdown arrow styling */
    .goog-te-combo::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #fff;
    }
    
    /* Positioning for the dropdown arrow */
    .goog-te-combo-container {
        position: relative;
        display: inline-block;
    }