body.Store-page {
  background-image: url("../images/backgrounds/the.morgue.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #ff3c00;
  display: flex;
  flex-direction: column;
  min-height: 200vh; /* enables full scroll height */
}

/* === MAIN CONTENT BOX === */
main.menu-box-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 60px;
  width: 100%;
  box-sizing: border-box;
}

/* === STYLED CONTAINER FOR TABLE === */
.frosted-menu-box {
  width: 100vw; /* stretch across full screen */
  background-color: rgba(0, 0, 0, 0.65);
  border: 2px solid #ff3c00;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff3c00;
  backdrop-filter: blur(5px);
  padding: 20px 30px; /* reduced top padding from 40px */
  text-align: center;
  color: #ff3c00;
}

/* === TABLE STYLING === */
.menu-warning {
  font-size: 2.5rem;
  text-shadow: 0 0 5px #ff3c00, 0 0 10px #ff0000;
  margin-bottom: 2rem;
}

.menu-table {
  width: 90%;
  border-collapse: collapse;
  margin: 0 auto;
  color: #ff3c00;
  font-family: 'Arial', sans-serif;
}

.menu-table th,
.menu-table td {
  border: 1px solid #ff3c00;
  padding: 10px;
  text-align: left;
}

.menu-table th {
  background-color: #ff3c00;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
}

.menu-table tr:hover {
  background-color: #2a0000;
}
