.hidden { display:none; }	     /* Nicht löschen, Do not delete!*/
.responsivevoice-button {
    position: fixed;             /* fixierte Position am Bildschirm */
    right: 10px;                 /* Abstand vom rechten Rand */
    top: 20px;                   /* Abstand vom oberen Rand top: 20px oder unteren Rand bottom: 20px*/
    padding: 5px 10px;           /* Größe des Buttons */
    cursor: pointer;             /* Zeigt Hand-Cursor an */
    font-size: 1.2em;            /* größere Schrift */
    background-color: rgb(240 240 240 / 0.4); /* Hintergrundfarbe #f0f0f0;*/
    border: 1px solid #ccc;      /* Rand */
    border-radius: 5px;          /* abgerundete Ecken */
    transition: background-color 0.3s; /* sanfter Hover-Effekt */
    z-index: 9999;               /* sicherstellen, dass Button sichtbar bleibt */
}

.responsivevoice-button:hover {
    background-color: rgb(240 240 240 / 0.8); /* Hover-Farbe #e0e0e0 */
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .responsivevoice-button {
        float: none;          /* Float entfernen */
        display: block;       /* Blockelement */
        margin: 10px auto;    /* zentrieren */
        text-align: center;   /* Text zentrieren */
    }
}