
/* === Tipografía Global === */
body, td, th {
  font-family: Arial, sans-serif;
  font-size: 15px;
}

/* === Enlaces === */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* === Tipografía Personalizada (en uso) === */
.LetraRoja { color: #f00; }
.LetraRojaBold { color: #f00; font-weight: bold; }
.LetraAzulBold { color: #026ABF; font-weight: bold; }
.LetraNegraBold { color: #000; font-weight: bold; }
.LetraNegra17pxNormal { color: #000; font-size: 17px; }

/* === Colores de Fondo (solo los utilizados) === */
.ColorRojoClaro { background-color: #FF8080; border: thin outset; }
.ColorCeleste { background-color: #DEE7F3; border: thin outset; }
.ColorBlanco { background-color: #fff; border: 1px solid #999; }

/* === Resultados y Cajas === */
.ResultadoBlanco { background-color: #fff; border-bottom: 1px solid #999; }
.ResultadoAmarillo { background-color: #FFFAE8; border-bottom: 1px solid #999; }
.ResultadoCeleste { background-color: #F2FBFF; border-bottom: 1px solid #999; }

/* === Imagenes === */
img {
  max-width: 100%;
  height: auto;
}

/* === Botones === */
input[type="button"],
button[type="submit"] {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

/* === Responsive Móvil === */
@media screen and (max-width: 768px) {
  body, td, th {
    font-size: 14px;
  }

  input[type="button"] {
    width: 100%;
    margin-bottom: 8px;
  }

  table {
    width: 100%;
    display: block;
    overflow-x: auto;
  }
}

/* === Layout Central === */
.contenido-central {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Productos Grid === */
.productos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 10px;
}

.producto-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 160px;
  text-align: center;
  padding: 10px;
  transition: box-shadow 0.2s ease;
}

.producto-item:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.producto-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}

.producto-descripcion {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.producto-precio {
  color: #026ABF;
  font-size: 13px;
}