#language_select_box {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 5px;
    background-color: #ffffff;
    z-index: 9999;
}
#language_select_box select {
    width: 0;
    display: none;
    padding: 2px;
    border-radius: 5px;
    margin-right: 5px;
}
#language_select_box:hover select {
    display: inline-block;
    width: calc(100% - 35px);
}
#language-flag {
    vertical-align: middle;
    width: 24px;
    margin-bottom: 3px;
}
#language_select_box:hover .language-select-header {
    display: flex;
    justify-content: center;
}
.language-select-header {
    align-items: center;
    font-size: 14px;
    display: none;
    white-space: nowrap;
    overflow: hidden;
}
.language-select-logo {
    width: 34px;
    height: 34px;
    margin-right: 5px;
}
.bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.bottom-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
}
.top-right {
    position: fixed;
    top: 20px;
    right: 20px;
}
.top-left {
    position: fixed;
    top: 20px;
    left: 20px;
}
