/* ================================
   ESTILOS DE LA TABLA GENERAL
   ================================ */
.pt-table {
  width: 95%;
  margin: 30px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.pt-table th {
  background-color: #0f1a33;     /* Azul oscuro para cabecera */
  color: #ffffff;                /* Texto blanco */
  padding: 14px;
  text-align: left;              /* Alineación a la izquierda */
  font-size: 18px;
  border-bottom: 2px solid #222;
  white-space: nowrap;           /* Evita saltos de línea */
}

.pt-table td {
  background-color: #000000;     /* Fondo negro */
  color: #ffffff !important;     /* Texto blanco, forzado */
  padding: 14px;
  font-size: 17px;
  text-align: left;
  border-bottom: 1px solid #333;
  white-space: nowrap;
}

.pt-table a {
  color: #ff4444;                /* Enlaces en rojo */
  font-weight: bold;
  text-decoration: none;
}

.pt-table a:hover {
  text-decoration: underline;    /* Subrayado al pasar el mouse */
}

/* ================================
   FORMULARIO DE BÚSQUEDA
   ================================ */
.pulperias-formulario {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.pulperias-formulario input[type="text"] {
  padding: 14px;
  width: 350px;
  font-size: 18px;
  border: 2px solid #ccc;
  border-radius: 10px 0 0 10px;
  outline: none;
}

.pulperias-buscar-btn {
  padding: 14px 28px;
  background-color: white;
  border: 2px solid #ccc;
  border-left: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.pulperias-buscar-btn:hover {
  background-color: #dedede;     /* Cambio de color al pasar el mouse */
}

/* ================================
   TABLA DE RESULTADOS DE BÚSQUEDA
   ================================ */
.pt-search-table {
  width: 90%;
  margin: 20px auto 60px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.pt-search-table thead th {
  background-color: #0f1a33;
  color: white;
  padding: 12px;
  font-size: 17px;
  text-align: left;
  border-bottom: 2px solid #333;
  white-space: nowrap;
}

.pt-search-table td {
  padding: 12px;
  background-color: #000;
  color: #00ff44 !important;     /* Texto verde brillante */
  border-bottom: 1px solid #333;
  font-size: 17px;
  text-align: left;
  white-space: nowrap;
}

/* Alternancia de color de filas (opcional) */
.pt-search-table tbody tr:nth-child(even) {
  background-color: #111;
}
