

#themeBlock{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    cursor: pointer;
}

#themeContent{
    padding: 2px;
    background-color: black;
    display: none;
    width: 160px;
    position: absolute;
    top: 40px;
    z-index: 2;
}

#theme, #customTheme{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
}

#theme div{
    width: calc(100% / 3);
    height: 27px;
    margin: 2px;
    border: 3px solid black;
}

#customTheme input[type="color"]{
    width: 100%;
    height: 27px;
    margin: 2px;
    padding: 0;
}

#customTheme input[type="color"]:hover, #themeRadio{
    cursor: pointer;
}

#themeRadio{
    aspect-ratio: 1 / 1;

    margin: 5px;
    width: 20px;
    height: 20px;

    appearance: none;
    background-color: var(--detailColor);
    border: 1px solid var(--textColor);
    border-radius: 50%;

    display: grid;
    place-content: center;
}

#themeRadio::before{
    content: "";

    width: 10px;
    height: 10px;
    border-radius: 50%;

    box-shadow: inset 20px 20px var(--textColor);

    transform: scale(0);

    transition: .2s transform;
}

#themeRadio:checked::before{
    transform: scale(1);
}


header button{
    transform: none;
    transition: none;
    background-color: var(--detailColor);
    color: var(--textColor);
    height: 40px;
    width: 80px;
}
