/* 🔹 BASE */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ece7dd;
  color: #2f2f2f;
}

/* 🔹 MANIFEST BOX */
#manifest-box {
  max-width: 700px;
  margin: 100px auto;
  padding: 30px;

  background-color: #f8f6f2;
  border-radius: 12px;

  text-align: center;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.06),
    0 0 40px rgba(30,144,255,0.08);
}


/* 🔹 NAVIGATION BUTTONS */
.nav-bottom {
  text-align: center;
  margin: 24px 0;
}

.back-btn {
  display: inline-block;

  padding: 14px 34px;

  background: #1E90FF;
  color: #ffffff;

  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;

  border-radius: 8px;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.12);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.back-btn:hover {
  background: #187bcd;

  transform: translateY(-2px);

  box-shadow:
    0 8px 18px rgba(0,0,0,0.18);
}


/* 🔹 TEXT */
#manifest-box p {
  margin-bottom: 18px;
  line-height: 1.6;
}

/* 🔹 RESPONSIVE */
@media (max-width: 600px) {

  #manifest-box {
    margin: 40px 20px;
    padding: 20px;
  }

}