/* --- Base Styles --- */
body {
  background-image: url(Images/menu.jpg);
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
}

button {
  margin-top: 30px;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 80px;
  background-color: rgb(151, 151, 151);
  border-radius: 30%;
  border: none;
}

button:hover {
  background-color: rgba(0, 162, 255, 0.534);
  color: aliceblue;
  cursor: pointer;
}

h2 {
  margin-left: 20%;
  margin-top: 60px;
  color: aliceblue;
}

.menu-container {
  position: relative;
  width: 100%;
}

.menu-table {
  width: 65%;
  float: left;
  margin-left: 20px;
}

table {
  width: 50%;
  border-collapse: collapse;
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  color: aliceblue;
  background-color: rgba(0, 0, 0, 0.178);
}

table th,
table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

table th {
  background-color: #a7a7a7;
  color: white;
}

table tr:hover {
  background-color: #f5f5f5;
  color: black;
}

/* --- Responsive Styles --- */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  h2 {
    margin-left: 10%;
    font-size: 28px;
  }

  .menu-table {
    width: 80%;
    float: none;
    margin: 20px auto;
  }

  table {
    width: 90%;
    font-size: 14px;
  }

  button {
    width: 70px;
    height: 35px;
    font-size: 14px;
  }
}

/* Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
  h2 {
    margin-left: 5%;
    font-size: 22px;
  }

  .menu-table {
    width: 100%;
    margin: 10px auto;
  }

  table {
    width: 100%;
    font-size: 12px;
  }

  button {
    width: 60px;
    height: 30px;
    font-size: 12px;
  }
}