body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.bg-crema {
  background-color: #f7f3e8; /* Color de fondo crema */
}

.card-marron {
  background-color: #5d4037; /* Marrón oscuro para la tarjeta */
  color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 500px; /* Ancho máximo para el centrado */
}

.card-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
}

.btn-amarillo {
  background-color: #ffc107; /* Amarillo para los botones */
  border-color: #ffc107;
  color: #000;
  font-weight: bold;
}

.btn-amarillo:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.input-group .form-control {
  border: 1px solid #ced4da;
  border-right: none;
}

.input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.info-adicional {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}

.info-adicional p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.carton-item-marron {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4b362a;
  border: 1px solid #6d5b4e;
  border-radius: 5px;
  padding: 10px 15px;
  margin-top: 15px;
}

.carton-item-marron span {
  font-weight: bold;
}

.fondo-pasto-v2 {
  width: 100%;
  height: 100px;
  background-image: url('uploads/system/pasto-fondo.png');
  background-size: cover;
  background-position: center bottom;
  margin-top: auto;
}