
/* RESPONSIVE */
@media (max-width: 599px) {  
    .search-container input {
      font-size: 1.2rem;   /* texto más grande */
      padding: 1em;        /* más espacio táctil */
    }
    .search-container button {
      font-size: 1.2rem;
      padding: 1em;
    }

    .results {
    	/* resultados más legibles en móvil */
      font-size: 1.1rem; 
    }
}

/* Desktop: panel más pequeño tipo recuadro */
@media (min-width: 1024px) {
  .finder-panel {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: auto;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
}