.controller {
    display: flex;
    background-color: #2a2a2a;
    border: 1px solid #444 !important;
    border-radius: 20px;
    padding: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;

    align-items: stretch;
    gap: 20px;
    font-family: "Montserrat", "Inter", sans-serif;
    font-weight: 500;

}

.controller .main {
    width: auto;
    display: flex;
    gap: 10px;
    flex-grow: 1;
}

.controller .main input,
.controller .main select,
.file-upload,
.controller #resetControls {
    background-color: #3b3b3b !important;
    padding: 5px 10px !important;
    border: none;
    outline: none;
    border-radius: 5px !important;
    font-size: 15px !important;
    font-family: "Montserrat", "Inter", sans-serif;
    color: white !important;
    cursor: pointer;
    font-weight: 500 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    text-transform: none;

    width: auto;
}

.controller .fit {
    display: flex;
    color: white;
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
}

.controller label {
    display: flex;
    flex-direction: column;
}

.controller input[type="file"] {
    display: none;
}


@media (max-width: 1150px) {
    .controller .main {
        flex-wrap: wrap;
    }
}