.custom-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
    padding: 1em 0;
}

.custom-search-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25em;
    font-size: 0.9em;
}

.custom-search-form input[type="text"],
.custom-search-form select {
    background-color: #e6f4f1;
    border: 1px solid #c0dedc;
    border-radius: 6px;
    padding: 0.5em 0.75em;
    font-size: 1em;
    min-width: 250px;
}

.custom-search-form select {
    min-width: 180px;
}

.custom-search-form input[type="checkbox"] {
    margin-right: 0.5em;
    transform: scale(1.1);
}

.custom-search-form input[type="submit"] {
    background-color: #007c6f;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.6em 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-search-form input[type="submit"]:hover {
    background-color: #005f55;
}

.custom-search-form label[for="s"],
.custom-search-form label[for="category"] {
    width: 100%;
}

@media (min-width: 600px) {
    .custom-search-form label[for="s"],
    .custom-search-form label[for="category"] {
        width: auto;
    }
}
