.horizontal_form {
    justify-content: start;
    align-items: center;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat( auto-fit, 6rem minmax(12rem, auto) );
    row-gap: 0.3rem;
    column-gap: 0.1rem;
}

.horizontal_form label {
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
    align-self: center;
}

.horizontal_form :is(input, select) {
    margin-right: 0.5rem;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
    min-width: 8rem;
    @media (max-width: 400px) {
        max-width: 10rem
    }
}

.horizontal_form :is(input[type="date"], select) {
    flex-grow: 1;
}

.horizontal_form input[type="submit"] {
    margin-right: 0.5rem;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
    min-width: 6rem;
    border-radius: 0.25rem;
}

.arrow_button, .horizontal_form input.arrow_button {
    background-color: var(--milloin-blue);
    color: var(--milloin-background);
    padding: 0;
    width: 1rem;
    min-width: 1rem;
}