/* Estilos frontend */
.bca-buscador-container {
    margin: 1em 0;
    max-width: 600px;
}

.bca-buscador-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.bca-resultados {
    margin-top: 10px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
}

.bca-lista-resultados {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bca-lista-resultados li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.bca-lista-resultados li:last-child {
    border-bottom: none;
}

.bca-lista-resultados a {
    color: #2271b1;
    text-decoration: none;
}

.bca-lista-resultados a:hover {
    text-decoration: underline;
}

.bca-cargando,
.bca-sin-resultados {
    color: #666;
    font-style: italic;
    margin: 0;
}

.bca-error {
    color: #dc3232;
    margin: 0;
}