body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #e0f7fa, #b2ebf2);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-box {
  text-align: center;
  background: white;
  padding: 4px;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
h1 {
  color: #00796b;
  font-size: 2.5em;
}
h2 {
  margin-top: 1px;
  font-size: 1.5em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}
p {
  font-size: 1.2em;
  color: #555;
}
.btn {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #00796b;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1em;
}
.btn:hover {
  background-color: #004d40;
}
.btn2 {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #FFF200;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.5em;
  width: 100px;
}
.btn2:hover {
  background-color: #F0E300;
}
.seccion {
  padding: 5px 2px;
}
.seccion:nth-child(even) {
  background-color: #f9f9f9;
}
.divisor {
  border-top: 2px dashed #ccc;
  margin: 5px 0;
}
.contenedor-productos {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
  }
.card {
  font-family: Arial, sans-serif;
  max-width: 150px;
  border: 1px solid #ccc;
  padding: 15px;
  margin-top: 20px;
}
.card img {
  width: 100%;
  height: auto;
}
.card h2 {
  font-size: 1.2em;
  margin: 10px 0;
}
.card h3 {
  font-size: 1.5em;
  margin: 5px 0;
}
.card p {
  font-size: 1em;
}
.card a {
  display: inline-block;
  margin-top: 10px;
  color: #000000;
  background: #FFF200;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
}



table {
    border-collapse: collapse;
    width: 100%;
  }

  th, td {
    padding: 10px;           /* Espaciado interno */
    height: 40px;            /* Altura fija de filas */
    text-align: left;
    border: 1px solid #ccc;
  }

  tbody tr:nth-child(even) {
    background-color: #f2f2f2; /* Color para filas pares */
  }

  tbody tr:nth-child(odd) {
    background-color: #ffffff; /* Color para filas impares */
  }

  thead {
    background-color: #333;
    color: white;
  }
  
  .formulario {
      display: flex;
      flex-direction: column;
      gap: 20px;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      max-width: 600px;
      margin: auto;
    }


  .campo {
    display: flex;
    flex-direction: column;
  }

  label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }

  input, textarea, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
  }

  input:focus, textarea:focus, select:focus {
    border-color: #0078D4;
    outline: none;
  }

  textarea {
    resize: vertical;
    min-height: 100px;
  }

  .botonera {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
  }

  button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background-color: #0078D4;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  button:hover {
    background-color: #005fa3;
  }

