body {
  background: #ffeaa7;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  color: #2d3436;
}

.contenedor {
  max-width: 700px;
  margin: 40px auto;
  background: #fdcb6e;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0px 0px 25px #d63031;
  text-align: center;
  border: 4px dashed #e17055;
}

h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #d63031;
  text-shadow: 2px 2px 2px #fff;
}

.formulario {
  background: #ffeaa7;
  padding: 20px;
  border-radius: 20px;
  border: 3px solid #fab1a0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

label {
  font-size: 18px;
  color: #6c5ce7;
}

select, input[type="file"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #fd79a8;
  background: #fce1e4;
  cursor: pointer;
}

.boton {
  background: #00b894;
  color: white;
  font-size: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.boton:hover {
  background: #00cec9;
  transform: scale(1.05);
}

.instrucciones {
  background: #fab1a0;
  border-radius: 15px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  margin-top: 20px;
}

.instrucciones h3 {
  margin-top: 0;
  color: #d63031;
}

.instrucciones ul {
  list-style: "🎯 ";
  padding-left: 20px;
}

.nota {
  margin-top: 20px;
  font-size: 14px;
  font-style: italic;
  color: #555;
}

.reusada {
  background-color: #ffeaa7 !important;
  border: 2px dashed #d63031;
  font-weight: bold;
  color: #2d3436;
}


#lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 10px 0 20px 0;
}

#lista li {
  background: #fdcb6e;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: 0.2s;
}

#lista li:hover {
  transform: scale(1.1);
  background-color: #ffeaa7;
}
