
/* Page background */
body {
  background-color: #111;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 30px;
  color: #fff;
}

/* Menu container (center card) */
.menu-container {
  max-width: 900px;
  margin: auto;
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Title & Notes */
.menu-title {
  background: #f39c12;
  color: #000;
  display: inline-block;
  padding: 8px 14px;
  font-weight: 200;
  border-radius: 6px;
}
.menu-note {
  color: #aaa;
  margin: 10px 0 20px 0;
  font-size: 14px;
}

/* Section headings */
.category {
  color: #f39c12;
  font-weight: 700;
  margin-top: 20px;
  text-transform: uppercase;
}

/* Tables */
.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.menu-table th {
  background: #222;
  color: #f39c12;
  padding: 10px;
  text-align: left;
  font-weight: 600;
}
.menu-table td {
  padding: 10px;
  border-bottom: 1px solid #333;
  color: #fff;
}
