/* Google fonts import link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  height: 100vh;
  display: inline;
  align-items: center;
  justify-content: flex-start;
  background: #1f80ee;
}

.wrapper {
  user-select: none;
}
.wrapper .time {
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /*border-radius: 6px;*/
  border-radius: 7px 7px 0px 0px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.09);
  padding: 10 10px;
}
.wrapper .time span {
  width: 100px;
  text-align: center;
  font-size: 5%;
  /* font-size: 50px; */
  font-weight: 500;
  color: #333;
}
.time span.colon {
  width: 10px;
}
.time span.ms-colon,
.time span.millisecond {
  color: #7d2ae8;
}
.wrapper .buttons {
  text-align: center;
  margin-top: 20px;
}
.buttons button {
  padding: 6px 16px;
  outline: none;
  border: none;
  margin: 0 5px;
  color: #7d2ae8;
  background: #fff;
  font-size: 19px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.09);
}
.buttons button.active,
.buttons button.stopActive {
  pointer-events: none;
  opacity: 0.7;
}
.container {
margin-left: 0.5%;
  top: 5px;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.0%;
  width: 18.5%;
}
.millisecond{
  visibility: hidden;
}
.colon ms-colon{
  visibility: hidden;
}
/*-----------*/
.price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #db7d09;
  position: relative;
  background-color: #fff;
  border-radius: 0px 0px 7px 7px;
}
 .currency {
  margin-right: 5px;
}
 .amount {
  color: green;
}
/**------------------ */
.eating,.eating2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}
 .eating label {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
 .eating input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
 .eating input[type="number"] {
  width: 130px;
}
 .eating button {
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
 .eating button:hover {
  background-color: #2980b9;
}

/*------Food------*/

.buttons .food-btn {
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
 .buttons .food-btn:hover {
  background-color: #2980b9;
}
 .container_food {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: auto; /* Change from height: 0; to allow dynamic height */
  transition: height 0.5s;
}
 .eating,.eating2 {
  /* ... Existing styles ... */
  visibility: hidden; /* Add initial visibility */
  height: 0; /* Add initial height */

  width: 80%;
  max-width: 400px;
  padding: 20px;
  background-color: #9ad222;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.eating.show {
  visibility: visible; /* Show the div */
  height: auto; /* Allow dynamic height */
}


/* -------------------- */
.food{
  text-align: center;
  margin-top: 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.food:hover {
  background-color: #2980b9;
  cursor: pointer;
}

/* -------------------- */
.sh_food{
  text-align: center;
  margin-top: 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.sh_food:hover {
  background-color: #2980b9;
  cursor: pointer;
}

/* =================== */

/* Hide the food list by default */
.food-list{
  display: none;
}
 /* Style the 'Show Foods' button */
.show-foods {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
 .show-foods:hover {
  background-color: #3e8e41;
}
 /* Style the list of foods */
.food-list li {
  margin: 5px 0;
  font-size: 16px;
}

/* -=-=-=-=-=-=-=-=-=-=-=-= */

.Table_number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #f4006a;
  position: relative;
  background-color: #bafeff;
  border-radius: 7px 7px 7px 7px;
}
.eating2 {
  visibility: hidden;
}
.eating2.show {
  visibility: visible;
  height: auto;
}


/* update it all  */
