.mt-day-night-toggle {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #87CEEB; /* Light blue for day/sky */
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    overflow: hidden;
}

.mt-day-night-toggle.dark-mode {
    background-color: #1A237E; /* Dark blue for night */
}

.mt-toggle-slider {
    position: absolute;
    top: 50%;
    left: 1.64px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: left 0.5s ease, background-color 0.5s ease;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.mt-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mt-toggle-icon i,
.mt-toggle-icon svg {
    display: block;
}