@import "https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css";

[data-theme=light],
:root:not([data-theme=dark]),
:host(:not([data-theme=dark])) {
    --pico-color: rgb(80, 80, 80);
    --pico-background-color: rgb(240, 240, 240);
    --pico-h1-color: rgb(255, 100, 82);
    --pico-primary-background: rgb(92, 184, 92);
    --pico-primary-hover-background: rgb(57, 152, 57);
}

body>footer {
    margin: 0;
    max-width: 100%;
    text-align: center;
    background-color: rgb(255, 100, 82);
}

footer nav,
footer nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

fieldset > legend {
    font-weight: 600;
}

.range,
.range-info {
    display: flex;
    color: var(--pico-color);
}

.range {
    justify-content: space-between;
    padding-left: 0.5rem;
}

.range span {
    display: inline-block;
    cursor: pointer;
}

.range-info {
    margin-top: -0.8rem;
    justify-content: space-between;
}

.range-info span:last-child {
    text-align: right;
}

@media (min-width: 576px) {
    input.inline-input {
        display: inline;
        width: auto;
        height: auto;
        padding: 0 0.5rem;
        margin: 0;
    }
}