body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.navbar.bg-orange {
    background-color: #FFA500; /* Orange background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-white {
    background-color: #fff; /* White background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Gray shadow */
    overflow: hidden; /* Hide scrollbar */
    white-space: nowrap; /* Prevent wrapping */
}
.navbar-white .navbar-nav {
    display: flex;
    justify-content: center; /* Align items to the center */
    width: 100%; /* Take up full width */
}
.navbar-white .nav-item {
    margin-right: 15px; /* Adjust spacing between items */
}
.navbar-white .nav-link {
    color: #000; /* Black font color */
}

/* Media query for small screens */
@media (max-width: 767px) {
    .navbar-white .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar-white .nav-item {
        margin: 5px;
    }
}

.navbar-nav .nav-item.active {
    border: 2px solid #FFA500;
    border-radius: 15px; /* Adjust the radius as needed */
}


.menu-header {
    padding: 10px 20px;
    background-color: #FFA500; /* Orange background */
    color: #fff; /* White font color */
    font-weight: bold;
    text-align: center;
}


.menu {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hide the menu */
    width: 250px;
    height: 100vh;
    background-color: #fff; /* White background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Gray shadow */
    transition: left 0.3s ease;

}

.menu.active {
    left: 0;
}

.menu a {
       text-decoration: none;
       color: inherit;
   }


.menu2 {
    position: fixed;
    top: 0;
    right: -400px; /* Initially hide the menu on the right */
    width: 400px;
    height: 100vh;
    background-color: #fff; /* White background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Gray shadow */
    transition: right 0.3s ease; /* Transition the right property */
}

.menu2.active2 {
    right: 0;
}


.menu-item {
    padding: 10px 20px;
    color: #000; /* Change font color to black */
    background-color: #fff; /* White background */
/*    border-bottom: 1px solid #555;*/
    transition: background-color 0.3s, box-shadow 0.3s; /* Add box-shadow transition */
    cursor: pointer;
    border-radius: 0; /* Initial border-radius */
}
.menu-item:hover,
.menu-item.active {
    background-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Change box shadow opacity to 0.3 */
    border-radius: 0 40px 40px 0; /* Rounded corners on the right when hovered or active */
}
.menu-item:last-child {
    border-bottom: none;
}

.toggle-btn {
    z-index: 999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.toggle-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.toggle-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.content {
    padding: 20px;
}


/* Custom CSS */
.table-block {
    background-color: #f8f9fa; /* Light gray background */
    border: 2px solid #ccc; /* Gray border */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.table-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.table-number {
    background-color: #ffc107; /* Orange background for table number */
    color: #fff; /* White text color */
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}
.table-details {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.table-grid {
    width: 100%;
    border-collapse: collapse;
}

/* Styles for the table cells */
.table-cell {
    border: 1px solid #ccc;
    padding: 10px;
}


.order-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.item-details {
    display: flex;
    flex-direction: column;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    font-weight: bold;
}

.item-price,
.extra-price {
    color: #777;
}

.extras {
    margin-top: 5px;
}

.extra {
    display: flex;
    justify-content: space-between;
}

.bill-total {
    text-align: right;
    margin-top: 10px;
    font-weight: bold;
}
