/* Buscador de categorías */
.tf-categoria-sugerencias {
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.tf-resultado-categoria {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.tf-resultado-categoria:hover {
    background-color: #f8f9fa;
}

.tf-categoria-nombre {
    font-weight: 600;
    color: #2c3e50;
}

.tf-categoria-desc {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 3px;
}

.tf-buscando, .tf-sin-resultados, .tf-error {
    padding: 10px;
    text-align: center;
}

.tf-buscando {
    color: #3498db;
}

.tf-sin-resultados {
    color: #666;
    font-style: italic;
}

.tf-error {
    color: #e74c3c;
}