.search-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 80px;
}
@font-face {
  font-family: 'Kola';
  src: url('../Fonts/Kola_Complete/Kola_Complete/Fonts/WEB/fonts/Kola-Regular.ttf') format('truetype'); /* Ajusta la ruta si es diferente */
  font-weight: normal;
  font-style: normal;
}
.count-badge {
  background-color: #B026FF;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  animation: fadeIn 0.3s ease;
  font-family: 'Kola';
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

#search-input {
  padding: 8px;
  border-radius: 6px;
  width: 220px;
}

#voice-search-btn {
  background-color: #B026FF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.3s ease;
}

#voice-search-btn:hover {
  background-color: #39FF14;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  color: #0ff;
  width: 100%;
  border: 1px solid #0ff;
  border-radius: 6px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 0 8px #0ff, 0 0 16px #0ff;
  font-family: 'Orbitron', sans-serif;
  padding: 4px 0;
  animation: glow-fade 1s infinite alternate;
}

/* Items individuales */
.result-item {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.result-item:hover {
  background-color: #0ff;
  color: #111;
}

/* Animación de resplandor */
@keyframes glow-fade {
  from {
    box-shadow: 0 0 8px #0ff, 0 0 16px #0ff;
  }
  to {
    box-shadow: 0 0 12px #00f6ff, 0 0 24px #00f6ff;
  }
}
/*
@media screen and (min-width:834px) and (max-width:1360px) {
  

/* Corrección para Sesion y Registro - Igualar la barra de búsqueda 
.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
}

#search-input {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  width: 250px;
  font-weight: bold;
  background-color: #111;
  color: white;
  box-shadow: 0 0 5px #B026FF, 0 0 10px #B026FF, 0 0 15px #B026FF;
  outline: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#search-input:focus {
  box-shadow: 0 0 8px #B026FF, 0 0 20px #B026FF, 0 0 30px #B026FF;
  background-color: #1a1a1a;
}

#voice-search-btn {
  background-color: #B026FF;
  padding: 10px 18px;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#voice-search-btn:hover {
  background-color: #39FF14;
}

#voice-search-btn.listening {
  background-color: #ff073a;
}
}*/