

.period-event{
    margin-bottom: 50px;
    color: white;
    display: flex;
    gap: 15px;
    font-weight: 800;
    align-items: start;
}
.button-container {
    position: relative;
    display: inline-block;
}
#toggleButton {
    display: none;
}
label {
    display: inline-block;
    cursor: pointer;
    border: 1px solid white;
    border-radius: 30px;
    width: 40px;
    height: 20px;
}
label::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}
#toggleButton:checked + label::before {
    transform: translateX(100%);
    background-color: #FFF381;
}