* {
  background-color: #f7f7f7;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.login-container {
  text-align: center;
}

.logoContainer {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.logo {
  height: 100px;
}

input[type="text"] {
  width: calc(100% - 80px);
  padding: 8px;
  margin-right: 10px;
}

#searchResults {
  margin-top: 20px;
}

.result-row {
  background-color: #f7f7f7;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.result-item {
  margin-bottom: 5px;
}

.result-header {
  font-weight: bold;
}

/* Estilos para el toaster */
.toaster {
  position: fixed;
  bottom: 20px;
  right: 20px;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 4px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.toaster.show {
  transform: translateY(0);
  opacity: 1;
}

.toaster.success {
  background-color: #28a745;
}

.toaster.error {
  background-color: #dc3545;
}

.toaster.info {
  background-color: #17a2b8;
}

.toaster.warning {
  background-color: #ffc107;
  color: #212529;
}

/* Estilos para los mensajes de búsqueda */
.searching {
  text-align: center;
  padding: 20px;
  color: #666;
}

.no-results {
  text-align: center;
  padding: 20px;
  color: #c00;
  background-color: #fff0f0;
  border: 1px solid #fcc;
  border-radius: 5px;
}

.error {
  text-align: center;
  padding: 20px;
  color: #c00;
  background-color: #fff0f0;
  border: 1px solid #fcc;
  border-radius: 5px;
}

/* Destacar la fila cuando el mouse está encima */
.result-row:hover {
  background-color: #eaeaea;
}

/* Hacerlo responsive */
@media (max-width: 576px) {
  .toaster {
    left: 20px;
    right: 20px;
    min-width: unset;
  }
}
