body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
  margin: 30px;
  background-color: #fff;
}

h2 {
  color: #111;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

input[type="text"],
input[type="date"],
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  height: 120px;
}

button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

button:hover {
  background-color: #45a049;
}

a {
  display: block;
  margin-top: 15px;
  color: #0000ee;
  text-decoration: underline;
  font-family: inherit;
}
/* Estilo para las entradas guardadas */
.entrada {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
}

/* Botón de eliminar dentro de la entrada */
.entrada button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e74c3c;
  font-size: 13px;
}

.entrada button:hover {
  background-color: #c0392b;
}

/* Botón secundario (como "Ver Entradas") */
.boton-secundario {
  background-color: #3498db;
  margin-top: 20px;
}

.boton-secundario:hover {
  background-color: #2980b9;
}