body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: #fff;
}

.content_wrapper {
    background-color: #5f050f;
    ;
    color: #fff;
    min-height: 100%;

    .content {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        min-height: 100%;
    }
}

.slider_group {
    display: flex;
    align-items: center;
    column-gap: 8px;

    label {
        flex: 0 1 15%;
    }

    input {
        flex: 1 1 auto;
    }

    output {
        flex: 0 1 15%;
    }
}

.box {
    border-bottom: solid 1px #ffffff44;
    margin: 8px 0;
    display: flex;
    column-gap: 8px;

    .name {
        font-weight: bold;
    }

    .result {
        margin-left: auto;
    }
}

.circle {
    display: flex;
    border: solid 1px #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

#oven_listing {
    h2 {
        font-weight: bold;
    }

}


ul.listing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px;
    list-style: none;
    padding: 0;
    margin: 0;

    &>li {}
}

.form_button {
    background-color: #fff;
    color: #5f050f;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 64px;
    font-weight: bold;
    font-size: 1.2rem;
}