
/* Slider styles */
.theme-toggle {
    display: flex;
    align-items: center;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    cursor: pointer;
    width: 60px;
    height: 34px;
    background-color: white;
    border-radius: 34px;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-label:before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #127c71;
    left: 4px;
    bottom: 4px;
    transition: transform 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label {
    background-color: black;
}

.toggle-checkbox:checked + .toggle-label:before {
    transform: translateX(26px);
}
