﻿
#theme-switch {
    user-select: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.toggle {
    width: 60px;
    height: 30px;
    background-color: var(--background-light);
    border-radius: 16px;
    position: relative;
}


.knob {
    width: 26px;
    height: 26px;
    background-color: var(--background);
    border-radius: 12px;
    top: 2px;
    left: 2px;
    position: relative;
    transform: translateX(0px);
    transition: transform 0.1s, color 0.1s, background 0.1s;
}

.dark-mode .knob {
    transform: translateX(30px);
}

#theme-sun-icon, #theme-moon-icon {
    position: absolute;
    transition: opacity 0.1s;
    pointer-events: none;
    height: 14px;
    width: 14px;
}

#theme-sun-icon {
    opacity: 1;
    font-size: 17px;
    top: 5px;
    left: 4px;
}

.dark-mode #theme-sun-icon {
    opacity: 0;
}

#theme-moon-icon {
    opacity: 0;
    font-size: 15px;
    top: 5.5px;
    left: 4.5px;
}
.dark-mode #theme-moon-icon {
    opacity: 1;
}
