.tt-buscador-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tt-buscador-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.tt-buscador-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 32px;
    font-size: 16px;
}
.tt-buscador-input:focus {
    outline: none;
    border-color: #2c1a46;
}
.tt-buscador-btn {
    padding: 12px 30px;
    background: #2c1a46;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}
.tt-buscador-btn:hover {
    background: #3d2a5f;
}
.tt-buscador-resultados {
    margin-top: 20px;
}
.tt-buscador-resultado-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #2c1a46;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tt-buscador-resultado-info {
    flex: 1;
}
.tt-buscador-resultado-nombre {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.tt-buscador-resultado-datos {
    font-size: 14px;
    color: #666;
}
.tt-buscador-resultado-tipo {
    display: inline-block;
    padding: 4px 10px;
    background: #e8e8e8;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;
}
.tt-buscador-resultado-tipo.arquetipos {
    background: #d4e4f7;
    color: #2c1a46;
}
.tt-buscador-resultado-tipo.temperamentos {
    background: #f7d4e4;
    color: #8b1a46;
}
.tt-buscador-descargar-btn {
    padding: 16px 32px;
    background: #2c1a46;
    color: #fff;
    text-decoration: none !important;
    border-radius: 32px;
    font-weight: bold;
    transition: background 0.3s;
}
.tt-buscador-descargar-btn:hover {
    background: #3d2a5f;
    color: #fff;
}
.tt-buscador-sin-resultados {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}
.tt-buscador-cargando {
    text-align: center;
    padding: 20px;
    color: #666;
}
