#themeToggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    padding: 10px;
    margin: 0;
    border-radius: 10px;
    background: var(--shade-3);
    color: var(--shade-0);
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#themeToggle svg {
    width: 20px;
    height: 20px;
}

#themeToggle .icon-sun {
    display: block;
}

#themeToggle .icon-moon {
    display: none;
}

[data-theme="light"] #themeToggle .icon-sun {
    display: none;
}

[data-theme="light"] #themeToggle .icon-moon {
    display: block;
}