#oer-button {
    position: fixed;
    bottom: 20px;
    right: 70px;
    background-color: var(--teal-700);
    color: white;
    border: 3px solid var(--teal-50);
    text-decoration: none;
    border-radius: 30px;
    padding: 3.5px 15px 3.5px 5px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 0.85em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

#oer-button::before {
    content: "\f19f";
    font-family: 'Ionicons';
    font-size: 30px;
    color:rgba(255, 255, 255, 0.9);
    line-height:1;
    font-weight: normal;
    display: inline-block;
    width:30px;
    height:30px;
    border-radius:50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

#oer-button.visible {
    opacity: 1;
    visibility: visible;
}

#oer-button.bottom-reached {
    opacity: 0;
    visibility: hidden;
}

#oer-button:hover {
    background-color: var(--teal-500);
}

/* Standardmäßig Desktop-Text anzeigen, Mobile-Text verstecken */
.oer-button-text-desktop {
    display: inline;
}

.oer-button-text-mobile {
    display: none;
}

/* Media Query für mobile Geräte */
@media screen and (max-width: 768px) {
    
    /* Desktop-Text ausblenden, Mobile-Text anzeigen */
    .oer-button-text-desktop {
        display: none;
    }
    
    .oer-button-text-mobile {
        display: inline;
    }
}