h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 3em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.5em;
}

h2 {
  font-family: 'Montserrat', sans-serif;

}

.table {
  width: 150px;
  height: 150px;
  background-color: #8B4513;
  border-radius: 50%;
  border: 2px solid black;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.table-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tables-container {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.table-number {
  color: white;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid black;
  padding: 20px;
  text-align: center;
}

.menu-wrapper h2 {
  margin-top: 0;
}

.menu-wrapper ul {
  list-style: none;
  padding: 0;
}

.menu-wrapper li {
  margin: 10px 0;
}

#menu {
  display: none;
  position: absolute;
  top: 50%;
  left: 80%;
  right: -20%;
  bottom: -30%;
  background-color: white;
  border: 1px solid black;
  padding: 20px;
  overflow-y: auto;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

#menu h2 {
  margin-top: 0;
}

#menu ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

#menu li {
  margin-bottom: 20px;
}

#menu button {
  font-size: 1em;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.custom-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.bi-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border: 2px solid #000;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}

.bi-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000 50%, #fff 50%);
  background-size: 20px 20px;
  transform: translateX(-100%) translateY(100%) rotate(45deg);
  transition: transform 0.3s;
}

.bi-button:hover {
  background-color: #000;
  color: #fff;
}

.bi-button:hover::after {
  transform: translateX(0) translateY(0) rotate(45deg);
}

#employee-form input[type="text"] {
  padding: 5px;
  margin-bottom: 10px;
  width: 250px;
  font-size: 16px;
}

#employee-form input[type="submit"] {
  padding: 10px 20px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
