/* .custom-select {
    position: relative;
    width: 220px;
    font-family: sans-serif;
} */

.custom-select {
    position: fixed;
    width: 125px;
    font-family: sans-serif;
    bottom: 70px;
    right: 20px;
    z-index: 10;
}

.custom-select-trigger {
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-options {
    position: absolute;
    bottom: 100%;   /* Öffnet nach oben */
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: none;
    z-index: 999;
    margin-bottom: 8px; /* kleiner Abstand nach unten */
}

.custom-option {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-option:hover {
    background: #eee;
}

.custom-option img,
.custom-select-trigger img {
    width: 32px;
    /* height: 20px; */
    border-radius: 3px;
}

/* Google Translate verstecken */
.skiptranslate,
#google_translate_element2,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-combo {
    display: none !important;
}



body {
    top: 0 !important;
}