/* pesquisa_global.css - extraído de nucleo_seguranca.css em 13/07/26 */

/* Inicio - Pesquisa Global ---------------------------------------------------- */
.pesquisa-global-container 
{
  background: #f8f9fa;
  padding: 15px 15px;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pesquisa-global-wrapper 
{
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.pesquisa-input-wrapper 
{
  position: relative;
}

.pesquisa-input-wrapper input 
{
  width: 100%;
  padding: 12px 20px 12px 52px;
  border: 1px solid #ced4da;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pesquisa-input-wrapper input:focus 
{
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
  background: #fff;
}

.pesquisa-icon 
{
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 18px;
  pointer-events: none;
}

/* ==================== RESULTADOS ==================== */
.pesquisa-results 
{
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-height: 460px;
  overflow-y: auto;
  display: none;
  z-index: 1050;
  margin-top: 4px;
}

.pesquisa-results ul 
{
  list-style: none;
  padding: 0;
  margin: 0;
}

.pesquisa-results li 
{
  padding: 14px 18px;
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.2s ease;
}

.pesquisa-results li:hover 
{
  background: #f8f9fa;
}

.pesquisa-results a 
{
  text-decoration: none;
  color: #0d6efd;
  font-weight: 600;
  display: block;
  margin-bottom: -20px;
  font-size: 15.5px;
}

.pesquisa-results a:hover 
{
  text-decoration: underline;
}

.pesquisa-results small 
{
  color: #555;
  font-size: 0.9em;
  line-height: 1.45;
  display: block;
}

/* Destaque do termo */
.pesquisa-results strong 
{
  color: #fff !important;
  background: #3A5FCD !important;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* Scrollbar mais bonita */
.pesquisa-results::-webkit-scrollbar 
{
  width: 6px;
}
.pesquisa-results::-webkit-scrollbar-thumb 
{
  background: #c1c1c1;
  border-radius: 10px;
}

/* spinner para a pesquisa */
.pesquisa-spinner 
{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  color: #555;
}

.pesquisa-spinner-icon 
{
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: pesquisa-spin 0.6s linear infinite;
}

@keyframes pesquisa-spin 
{
  to { transform: rotate(360deg); }
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) 
{

  .pesquisa-global-container {
      padding: 12px 10px;
  }
  
  .pesquisa-input-wrapper input {
      font-size: 15px;
      padding: 13px 20px 13px 48px;
  }
  
  .pesquisa-icon {
      font-size: 17px;
      left: 18px;
  }
  
  .pesquisa-results {
      top: 70px;
      max-height: 420px;
  }
  
  .pesquisa-results li {
      padding: 13px 16px;
  }

}
/* Fim - Pesquisa Global ------------------------------------------------------- */
