﻿.search-form {
    margin: 20px auto;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.form-group {
    flex: 1;
    min-width: 170px;
    display: flex;
    flex-direction: column;
}

.form-group-short {
    flex: 1;
    min-width: fit-content;
    padding: 4px 10px;
    text-wrap: nowrap;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #fff;
}

.search-title-label {
    background-color: #222;
    padding: 0 4px;
    opacity: 0.7;
}


select, input[type=range], button {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: 'Calibri', sans-serif;
    font-size: 14pt;
}

input[type=range] {
    border: 2px solid #aaa; /* slider neat look */
    background-color: #008;
    opacity: 0.75;
}

button {
    cursor: pointer;
    background: #222;
    color: #fff;
    border: 1px solid #fff; /* white border for visibility */
    font-size: 14pt;
}
