input[type="number"] {
    width: 65px;
}

.container {
    width: 85vw;
}

.modes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.chooseType{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chooseType p {
    text-align: center;
}

.normalMode {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.filter-section {
    min-width: 200px;
    display: flex;
    align-items: center;
}


.filter-section h4 {
    /*margin: 0 0 10px 0;*/
    flex-shrink: 0;
}

.checkbox-group {
    display: flex;
    /*flex-direction: column;*/
    gap: 8px;
}

button.disabled {
    background-color: gray;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .filter-container {
        /*flex-direction: column;*/
        gap: 5px;
        margin-bottom: 0;
    }

    .filter-section {
        /*width: 100%;*/
        flex-direction: column;
    }

    .checkbox-group {
        /*flex-direction: row;*/
        flex-wrap: wrap;
        gap: 5px;
    }

    input[type="number"] {
        padding: 6px 5px;
        width: 40px;
    }
}