.custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

.language-header {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    min-width: 120px;
}

.arrow {
    margin-left: 5px;
    border: solid #47565f;
    border-width: 0 2px 2px 0;
    padding: 3px;
    display: inline-block;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: none;
    flex-direction: column;
    min-width: 100%;
    z-index: 1000;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #212529;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #dcdcdc;
}

#goog-gt-tt {
	display:none !important;
}

