.toggle-container {
    display: inline-block;
    position: relative;
    width: 2.5rem;
    height: 1.3rem;
    background-color: #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

.toggle-button {
    margin: 2px 0 2px 2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-color: #209920;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    /* line-height: 40px; */
    border-radius: 60px;
    transition: all 0.3s ease;
}

.toggle-button.active {
    left: 50%;
    /* background-color: #6c757d; */
}