/* Filters container */
.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filters-container .form-control {
    flex: 1 1 150px;
    min-width: 150px;
}

/* AI Search box */
.ai-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ai-search-box input {
    flex: 1;
}

/* Headings */
.filters-container h3,
.ai-search-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Match screenshot style - light background box */
.filters-container,
.ai-search-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Buttons */
#ai-search-btn, 
#search-btn-main {
    background-color: #d32f2f;
    border: none;
    padding: 8px 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#ai-search-btn:hover, 
#search-btn-main:hover {
    background-color: #b71c1c;
}
