
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Georgia', serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}


h1 {
  color: gold;
  margin-bottom: 20px;
}
.back-btn{
  float: left;
  background-color: gold;
  color: black;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 8px gold;
  transition: background-color 0.3s ease;
}
.menu-section {
  margin: 20px;
}

table {
  border-collapse: collapse;
  width: 600px;
  background-color: #89806f;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #444;
  position: relative;
}

th {
  background-color: #222;
  color: gold;
  font-size: 1.2em;
}

.ingredients {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  padding: 10px;
  border: 1px solid gold;
  width: 300px;
  z-index: 10;
  font-size: 0.9em;
  pointer-events: none;
}

td.hovering .ingredients{
  visibility: visible;
  opacity: 1;
}

td:hover {
  background-color: #222;
}

#cart {
  margin-top: 40px;
  width: 640px;
  background-color: #111;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  border: 1px solid gold;
}

#cart h2 {
  color: gold;
  margin-bottom: 15px;
}

#cart-list {
  list-style: none;
  padding-left: 0;
  max-height: 200px;
  overflow-y: auto;
}

#cart-list li {
  padding: 5px 0;
  border-bottom: 1px solid #444;
  display: flex;
  justify-content: space-between;
  font-size: 1em;
}

#cart-list li:last-child {
  border-bottom: none;
}

#cart-total {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.1em;
  color: gold;
}
footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background-color: rgba(90, 89, 89, 0.7);
  color: #fff;
}
