        body {
            display: flex;
            align-items: center;
            justify-content: center; 
            height: 90%;
            margin: 10px;
            background-color: #e0e0e0;
        }
        .content {
			margin-top: 25px;
            width: 100%;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            height: 90vh; /* Fixing height */
            overflow-y: auto; /* Allowing scrolling */
        }
        .scrollable-table {
            overflow-y: auto;
            height: 250px; /* Fixed height for the table */
        }
        .top-rectangle {
            width: 100%;
            height: 50px;
            background-color: #e9ecef;
            border-radius: 8px;
            display: flex;
            align-items: center;
            padding: 0 15px;
            margin-bottom: 15px;
        }
        #itemsT th {
            background-color: #007bff;
            color: white;
        }
        #itemsT th, table td {
            font-size: 14px;
            text-align: center;
        }
        #itemsT tbody tr:nth-child(odd) {
            background-color: #f2f2f2;
        }
        #itemsT tbody tr:nth-child(even) {
            background-color: #ffffff;
        }
		#tables {
            display: flex;
			margin-left: 50px;
			margin-top: -10px;
            justify-content: space-between;
        }
        #left_table_div, #right_table_div {
            flex: 1;
            margin: 10px;
        }
		#currentTime{
            justify-content: right; 
		}
		.links {
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
            justify-content: flex-start;
        }
        .links a {
            color: black;
            text-decoration: none; 
            padding: 5px 10px;
            margin: 0 5px;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        .links a:hover {
            color: #fff; 
            background-color: #007bff; 
            border-radius: 5px;
        }
		.button-yellow {
			background-color: #FFD700;
			border: 1px solid #ccc;
			padding: 8px 16px;
			text-align: center;
			color: white;
			font-size: 14px;
			font-weight: bold;
			cursor: pointer;
			border-radius: 5px;
			transition: background-color 0.3s ease;
		}
		.button-yellow:hover {
			background-color: #FFC107;
		}
#numpad {
    display: none;
    position: absolute;
    top: 150px;
    left: 20px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

.numpad-button {
    width: 100%;
    height: 60px;
    font-size: 20px;
    margin: 2px;
}
.a {
        display: block;
        width: 100%;
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }
    .a:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    }

#numPadModal {
  font-family: Arial, sans-serif;
}

#cnt {
  max-width: 300px;
  margin: auto;
}

#hdr {
  text-align: center;
}

#mdl_by {
  padding: 20px;
}

#numPadInput {
  height: 40px;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

#grp_ver {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#grp_ver>.btn {
  width: 80px;
  height: 50px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  color: white;
}

.num-btn {
  background-color: #007bff;
}

#nDel {
  background-color: #dc3545;
}

#nC {
  background-color: #ffc107;
}

#nD {
  background-color: #28a745;
}
.btn:hover {
  opacity: 0.8;
}
#saveButton {
  width: 150px;
  height: 40px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  color: white;
  background-color:#007bff;
  padding: 5px 10px;
  transition: color 0.5s ease, background-color 0.3s ease;
  margin-top: -50px;
  margin-left: 450px;
}
#saveButton:hover {
  background-color: #0056b3;
  color: #e2e2e2;
  cursor: pointer;
}
#viewButton, #boxButton {
  width: 150px;
  height: 40px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  color: white;
  background-color: #007bff;
  padding: 5px 10px;
  transition: color 0.5s ease, background-color 0.3s ease;
  cursor: pointer;
  margin-right: 10px; /* Add margin-right to space them out */
}

#viewButton:hover, #boxButton:hover {
  background-color: #0056b3;
  color: #e2e2e2;
}

#vBtnD {
  display: flex; /* Flexbox layout */
  justify-content: flex-start; /* Align items to the start */
  margin-top: -38px;
  margin-left: 835px;
}
#modal-dialog {
    width: 95%;
    margin-top: 20px; /* Adjust this value to move the modal up */
}

.modal-header {
    border-bottom: none; /* Remove the line after the close button */
    padding-bottom: 0; /* Remove any bottom padding */
}

.modal-header .close {
    margin-top: -10px; /* Adjust this value to move the close button up if needed */
}

.popup-container {
    display: flex;
    flex-direction: column; /* Align items in a column */
    height: 100%;
}

.popup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow this section to grow */
}

.popup-section {
    width: 100%;
    margin-bottom: 5px;
}

.popup-button {
    flex: 1 1 calc(10% - 10px); /* 10 buttons per row, with some margin */
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    text-align: center;
    padding: 10px;
    font-size: 12px; /* Decreased font size */
    cursor: pointer;
    color: white;
    transition: background-color 0.3s;
}

.popup-button:hover {
    opacity: 0.8;
}

.popup-button.bites {
    background-color: #007bff;
}

.popup-button.beverages {
    background-color: #0056b3; /* Darker shade of blue for beverages */
}

.order-box {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    background-color: #f9f9f9;
    height: 400px; /* Set the height to 400px */
    overflow-y: auto; /* Enable vertical scrolling */
}

.order-item {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.order-item:hover {
    background-color: #f5f5f5;
}

.remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: #d9534f;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
}

#done-button {
    background-color: #28a745;
    color: white;
	margin-top: -30px;
}


