.sliderdiv {
    position: absolute;
    right: 25px;
    top: 30px;
}

/* Stil für die runde Checkbox */
.round-checkbox {
    display: none; /* Verstecke die Standard-Checkbox */
}

.custom-checkbox {
    width: 15px;
    height: 15px;
    top: 10px;
    border-radius: 50%; /* Macht die Checkbox rund */
    background-color: rgba(255,255,255,0.4);
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.custom-checkbox::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 54%;
    left: 47%;
    transform: translate(-50%, -50%) scale(0); /* Verstecke das Kontrollkästchen */
    transition: transform 0.2s ease-in-out;
}

/* Wenn die Checkbox aktiviert ist, zeige das Kontrollkästchen */
.round-checkbox:checked + .custom-checkbox::after {
    transform: translate(-50%, -50%) scale(1);
    background-color: rgba(255,255,255,1.5);
}

/* Stil für den Link */
.custom-link {
    color: #000;
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    text: bold;
}