body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #333;
  margin: 20px;
}

/* Formulario */
#formproducto {
  max-width: 700px;
  margin: 0 auto 20px;
  background: #fff;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e6e9ee;
}

#formproducto label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 14px;
}

#formproducto input[type="text"],
#formproducto input[type="number"],
#formproducto input[type="url"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d6dbe2;
  border-radius: 6px;
  font-size: 14px;
}

/* Botón */
#btnAgregar {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#btnAgregar:hover { background: #235a94; }

/* Tabla */
#TablaProductos {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 8px;
  overflow: hidden;
}

#TablaProductos th,
#TablaProductos td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  font-size: 14px;
}

#TablaProductos th {
  background: #f7fafc;
  font-weight: 700;
}

#TablaProductos tbody tr:nth-child(even) {
  background: #fbfdff;
}

/* Imagen dentro de la tabla */
#TablaProductos img {
  max-width: 80px;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Total */
#labelTotal {
  float: right;
  font-weight: 700;
  color: #2b6cb0;
  padding: 10px;
}

