.theme-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
}

#theme-switch {
    width: 44px;
    height: 22px;
    background-color: #888;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    outline: none;
    appearance: none;
    transition: background-color 0.3s ease;
}

#theme-switch:checked {
    background-color: #444;
}

#theme-switch::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    top: 1px;
    left: 1px;
    transition: transform 0.3s ease;
}

#theme-switch:checked::before {
    transform: translateX(20px);
}

#theme-label {
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
    color: black;
    transition: color 0.3s ease;
}

body.dark #theme-label {
    color: #e0e0e0;
}