.custom-search-form {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.custom-search-form input[type="text"],
.custom-search-form select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex: 1;
}

.custom-search-form button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-search-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .custom-search-form {
        flex-direction: column;
    }
}