.theme-toggle {
    opacity: 0;
    position: absolute;
    display: none !important;
}
.theme-toggle-label {
    background-color: var(--bs-blue);
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.theme-toggle-label > i {
    color: #fff;
}
.theme-toggle-ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}
.theme-toggle:checked + .theme-toggle-label .theme-toggle-ball {
    transform: translateX(24px);
}