.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 .arrow_button {
    padding: 0.3rem;
}

.horizontal_form *,input[type="submit"] {
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
}

.horizontal_form label {
    height: auto;
    align-self: center;
}

.horizontal_form :is(input, select) {
    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"] {
    min-width: 6rem;
    border-radius: 0.25rem;
}
