.switch-menus {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #EEE;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.switch-menus > div#version-switch, .switch-menus > div#language-switch {
    display: inline-block;
    padding: .2em;
}

.switch-menus select {
    display: inline-block;
    margin-right: -20px;
    padding-right: 15px;
    padding-top: 4px;
    padding-bottom: 4px;
    text-align-last: center;
    background: none;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.switch-menus select:hover, .switch-menus select:active, .switch-menus select:focus {
    background:  #c7c7c7;
    /* color: rgba(0, 0, 0, 0.5); */
}

.switch-menus select option {
    color: black;
}

.switch-menus > div:has(> select):after {
    display: inline-block;
    width: 1.5em;
    height: 100%;
    padding: .1em;
    content: "\25BC";
    color: #9e9e9e;
    font-size: 0.8em;
    line-height: 1.2em;
    text-align: center;
    pointer-events: none;
    box-sizing: border-box;
}
