#translate-dropdown {
  margin-top: 40px;
  margin-bottom: 40px;
}

#translate-dropdown .language-selector {
 /* margin-bottom: 15px; */
}

/* Style the select elements */
#translate-dropdown select {
            width: 150px;
            max-width: 250px;
            padding: 7px;
            border: 2px solid #ccc;
            border-radius: 5px;
            background-color: #ffffff;
            color: #333333;
           /* appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none; */
            cursor: pointer;
}

/* Adding a custom arrow */
select::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 10px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #bf2228;
            transform: translateY(-50%);
            pointer-events: none;
        }


/* Hover effect for the select element */
        #translate-dropdown select:hover {
            border-color: #bf2228;
        }
        
/* Focus effect for the select element */
        #translate-dropdown select:focus {
            border-color: #9f1d22;
            outline: none;
        }

/* Translate dropdown submit button */        
        #translate-dropdown .btn-custom {
            color: #fff;
            background: #bf2228;
            margin-bottom: 4px;
            font-weight: 700;
            font-size: 1em;
            text-decoration: none;
}   

        #translate-dropdown .btn-custom:active, #translate-dropdown .btn-custom:hover, #translate-dropdown .btn-custom:focus {
            color: #fff;
            background: #9f1d22;
}
        #translate-dropdown .btn-custom:visited {
            color: #fff;
}