/* Estilos base del buscador customizable */
.bc-search-form {
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.bc-search-fields {
    display: flex;
    gap: 5px;
    align-items: stretch;
}

.bc-search-field,
.bc-category-select,
.bc-search-submit {
    padding: 10px 15px;
    border: 1px solid #ccc;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.bc-search-field {
    flex: 1;
    min-width: 0;
}

.bc-search-field:focus,
.bc-category-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.bc-category-select {
    flex: 0 0 auto;
    max-width: 200px;
    cursor: pointer;
}

.bc-search-submit {
    flex: 0 0 auto;
    cursor: pointer;
    border: none;
    font-weight: 500;
    white-space: nowrap;
}

.bc-search-submit:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .bc-search-fields {
        flex-wrap: wrap;
    }
    
    .bc-search-field {
        flex: 1 0 100%;
        margin-bottom: 5px;
    }
    
    .bc-category-select {
        flex: 1;
        max-width: none;
    }
    
    .bc-search-submit {
        flex: 1;
    }
}