

.header {
    display: flex; /* Use flexbox */
    justify-content: space-between; /* Distribute items along the main axis with space between them */
    align-items: center; /* Center items vertically */
    background-color: #ffd8bb;
    color: #ffffff; /* Text color */
    padding: 20px; /* Padding around the content inside the header */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow effect */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    /* background-color: #ffcda7; */
    color: #000000; /* Set text color to white */
}

.checkout-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



.header li a {
    color: #000000; /* Set the color of the links to black */
    text-decoration: none; /* Remove underline from links */
}

.header li a:hover {
    color: #f5f4f4; /* Change the color of links on hover */
}



nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.top-nav {
    background-color: #eb9553;
    background-color: #b46426;

    padding: 10px;

}

.top-nav .icon-list {
    list-style-type: none;
    margin: 0;  
    padding: 0;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
}


.top-nav .icon-list li {
    display: inline-block;
    margin-right: 20px;
}

.top-nav .icon-list li a {
    color: #050505;
    text-decoration: none;
    font-weight: bold;
    
}


.sidenav {
    width: 250px;
    float: left;
    margin-top: 10px;
    background-color: #eb9553;
    overflow: hidden; /* Prevent overflow */
}

.sidenav a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
}

.sidenav a:hover {
    background-color: #ffffff;
}



/* Responsive layout */
@media screen and (max-width: 768px) {
    .sidenav {
        width: 100%;
        float: none;
        margin-top: 0;
        height: auto;
        overflow-y: auto; /* Add overflow property */
        margin: auto;
    }

    /* Styles for the image container */
.image-container {
    display: flex;
    transition: transform 2s ease; /* Smooth transition effect */
}

/* Styles for the images */
.image-container img {
    width: 80%; /* Reduce image size */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure images cover their container */
}

    
    .sidenav a {
        padding: 15px 20px;
        text-decoration: none;
        font-size: 18px;
        color: #fff;
        display: block;
    }
    
    .sidenav a:hover {
        background-color: #ffffff;
    }
    
    .main {
        margin-left: 0;
        height: auto;
    }
    
    
  /* Styles for the content section */
  .content-section {
    position: relative;
    width: 100%; /* Adjust width as needed */
    margin: 0 auto; /* Center the section horizontally */
    overflow: hidden; /* Hide overflowing images */
}




/* Styles for the swipe buttons */
#swipeLeft,
#swipeRight {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    border: none;
    padding: 5px; /* Reduce padding */
    font-size: 16px; /* Reduce font size */
    cursor: pointer;
    z-index: 1; /* Ensure buttons are above images */
}

#swipeLeft {
    left: 5px; /* Adjust left position */
}

#swipeRight {
    right: 5px; /* Adjust right position */
}
#searchInput {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #ffcda7;

}

#searchInput:focus {
    outline: none;
    border-color: #007bff; /* Change border color when focused */
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ebebeb;
}



.container-2 {
    margin-bottom: 20px; /* Add spacing between sections */
    border: 2px solid #eb9553;
    padding: 2-px;
    border-radius: 10px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.search-wrapper {
    margin-bottom: 20px;
    border: 2px solid#C67336;
}



h2 {
    font-size: 18px;
    margin-bottom: 10px;
}


button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3; /* Darken color on hover */
}

.offer-section {
    border: 2px solid #C67336;
    padding: 10px;
    margin-bottom: 20px; /* Add spacing between sections */
}

.offer-section h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.offer-section p {
    margin-bottom: 5px;
}

.offer-section strong {
    color: #007bff; /* Change color of the voucher code */
}

/* Styles for food search results */
.food-search-results {
    list-style-type: none;
    padding: 0;
}

.food-search-results li {
    margin-bottom: 10px;
}

.food-search-results li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 5px;
    background-color: #fff;
    border: 2px solid #C67336;
    border-radius: 5px;
}

.food-search-results li a:hover {
    background-color: #f2f2f2;
}

.food-types {
    margin: 10px 0; /* Add margin for spacing */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.food-types label {
    margin-bottom: 5px; /* Add spacing between checkboxes */
    display: block;

}


button {
    padding: 10px 20px;
    background-color: #e25226;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}





#swipeLeft,
#swipeRight {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #843b14;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#swipeLeft {
    left: 10px; /* Adjust as needed */
}

#swipeRight {
    right: 10px; /* Adjust as needed */
}

#swipeLeft:hover,
#swipeRight:hover {
    background-color: #C67336;  
}





.vendor-lane-2{
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
}



#swipeLeft-2,
#swipeRight-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #843b14;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#swipeLeft-2 {
    left: 10px; /* Adjust as needed */
}

#swipeRight-2 {
    right: 10px; /* Adjust as needed */
}

#swipeLeft-2:hover,
#swipeRight-2:hover {
    background-color:#C67336;
}




.column {
    width: calc(33.33% - 20px); /* Adjusted width to account for padding */
    padding: 10px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.column h2 {
    font-size: 1.5em;
    color: #ffffff;
}

.column p {
    font-size: 1em;
    color: #ffffff;
}

.column ul {
    list-style-type: disc;
    color: #888;
}

.column ul li {
    margin-left: 20px;
}


.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-item {
    position: relative; /* Ensure proper positioning of the footer */
    width: 200px; /* Adjust width as needed */
    border: 1px solid #ddd; /* Add border for the menu item */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Hide overflow content */
}

.menu-item img {
    width: 100%; /* Make the image fill the container */
    display: block; /* Ensure the image is displayed as a block element */
    border-radius: 8px 8px 0 0; /* Rounded corners only at the top */
}




.container-bawah {
    background-color: #eb9553;
    color: #030303;
    text-align: center;
    padding: 20px 0;
    border-radius: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.column-bawah {
    width: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.column-bawah img {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: auto; /* Maintain aspect ratio */
}
.column-bawah h3 {
    color: #000000;
}

.column-bawah p {
    color: #000000;
}


.column-bawah iframe {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: 200px; /* Adjust the height as needed */
    border: 0;
    margin-bottom: 10px; /* Add spacing between the iframe and the address */
}

.column-bawah .address {
    color: #000000;
    font-size: 14px;
    margin-bottom: 0; /* Remove default margin */
}



/* Basic styling for the form */
#booking-form {
    max-width: 400px; /* Adjusted width to accommodate both elements */
    margin-right: 20px; /* Add some space between the two elements */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    float: left; /* Float the booking form to the left */
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

textarea {
    resize: vertical;
}








/* Full-width textarea */
.full-width textarea {
    width: 100%;
}

/* Adjustments for two-lane form */
.two-lane-form .form-group {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.two-lane-form .form-group.full-width {
    width: 100%;
}


.menu-selection {
    max-width: 300px; /* Adjusted width to accommodate both elements */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    float: left; /* Float the menu selection to the left */
}

.menu-selection h2 {
    margin-top: 0;
    font-size: 20px;
    color: #ffffff;
}

.menu-selection ul {
    list-style-type: none;
    padding: 0;
}

.menu-selection li {
    font-size: 16px;
    margin-bottom: 10px;
}

.menu-selection li:before {
    content: "\2022"; /* Bullet point */
    color: #4CAF50; /* Bullet point color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


#food {
    text-align: center;
}

#drink {
    text-align: center;
}
.menu-item-3 {
    display: inline-block;
    margin: 10px;
    vertical-align: top;
    width: 200px; /* Adjust width as needed */
}

.menu-item-3 img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}



.menu-food h3 {
    margin-top: 0;
}

.menu-food p {
    margin-bottom: 0;
}

.menu-drink {
    background-color: #ffcda7;

    padding: 10px;
}

.menu-drink h3 {
    margin-top: 0;
}

.menu-drink p {
    margin-bottom: 0;
}




/* Styles for the Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
}

.popup-content {
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}







#total-price {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}



/* Style the cart container */
.cart-container-2 {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
}

/* Style the cart items */
#cartItems {
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Style the total price */
#totalPrice {
    font-weight: bold;
    font-size: 18px;
}





.delete-button-1 {
    background-color: #843b14; /* Red background color */
    color: #fff; /* White text color */
    border: none; /* No border */
    padding: 5px 10px; /* Padding around the button text */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor style */
    
}

/* CSS for delete button hover effect */
.delete-button-1:hover {
    background-color: #cc0000; /* Darker red when hovered */
}

/* CSS to center delete button horizontally */
.delete-button-1 {
    display: inline-block; /* Display as inline block */
    margin: 0 auto; /* Center horizontally */
}




.content-section {
  
    padding: 20px; /* Add padding to the section */
    margin: 20px 0; /* Add margin to the section */
    border-radius: 8px; /* Add border radius for rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow for depth */
    font-family: Arial, sans-serif; /* Set the font family */
    color: #000000; /* Set the text color */
}

.user-info {
    font-weight: bold;
    color: #000000;
    margin-bottom: 5px;
}


#checkout{
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #000000;
}

#cart {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    width: 100%; /* Set width to 100% */
    max-width: none; /* Remove max-width */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #000000;
}

#cart h2 {
    font-size: 24px;
    margin-bottom: 15px;
}




#complete {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #000000;
}



.payment-method {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.payment-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-method p {
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-method select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.payment-method select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


}


  /* Styles for the content section */
  .content-section {
    position: relative;
    width: 100%; /* Adjust width as needed */
    margin: 0 auto; /* Center the section horizontally */
    overflow: hidden; /* Hide overflowing images */
}




/* Styles for the swipe buttons */
#swipeLeft,
#swipeRight {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    border: none;
    padding: 5px; /* Reduce padding */
    font-size: 16px; /* Reduce font size */
    cursor: pointer;
    z-index: 1; /* Ensure buttons are above images */
}

#swipeLeft {
    left: 5px; /* Adjust left position */
}

#swipeRight {
    right: 5px; /* Adjust right position */
}
#searchInput {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #ffcda7;

}

#searchInput:focus {
    outline: none;
    border-color: #007bff; /* Change border color when focused */
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ebebeb;
}



.container-2 {
    margin-bottom: 20px; /* Add spacing between sections */
    border: 2px solid #eb9553;
    padding: 2-px;
    border-radius: 10px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.search-wrapper {
    margin-bottom: 20px;
    border: 2px solid#C67336;
}



h2 {
    font-size: 18px;
    margin-bottom: 10px;
}


button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3; /* Darken color on hover */
}

.offer-section {
    border: 2px solid #C67336;
    padding: 10px;
    margin-bottom: 20px; /* Add spacing between sections */
}

.offer-section h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.offer-section p {
    margin-bottom: 5px;
}

.offer-section strong {
    color: #007bff; /* Change color of the voucher code */
}

/* Styles for food search results */
.food-search-results {
    list-style-type: none;
    padding: 0;
}

.food-search-results li {
    margin-bottom: 10px;
}

.food-search-results li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 5px;
    background-color: #fff;
    border: 2px solid #C67336;
    border-radius: 5px;
}

.food-search-results li a:hover {
    background-color: #f2f2f2;
}

.food-types {
    margin: 10px 0; /* Add margin for spacing */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.food-types label {
    margin-bottom: 5px; /* Add spacing between checkboxes */
    display: block;

}


button {
    padding: 10px 20px;
    background-color: #e25226;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}





#swipeLeft,
#swipeRight {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #843b14;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#swipeLeft {
    left: 10px; /* Adjust as needed */
}

#swipeRight {
    right: 10px; /* Adjust as needed */
}

#swipeLeft:hover,
#swipeRight:hover {
    background-color: #C67336;  
}





.vendor-lane-2{
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
}



#swipeLeft-2,
#swipeRight-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #843b14;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#swipeLeft-2 {
    left: 10px; /* Adjust as needed */
}

#swipeRight-2 {
    right: 10px; /* Adjust as needed */
}

#swipeLeft-2:hover,
#swipeRight-2:hover {
    background-color:#C67336;
}




.column {
    width: calc(33.33% - 20px); /* Adjusted width to account for padding */
    padding: 10px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.column h2 {
    font-size: 1.5em;
    color: #ffffff;
}

.column p {
    font-size: 1em;
    color: #ffffff;
}

.column ul {
    list-style-type: disc;
    color: #888;
}

.column ul li {
    margin-left: 20px;
}


.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-item {
    position: relative; /* Ensure proper positioning of the footer */
    width: 200px; /* Adjust width as needed */
    border: 1px solid #ddd; /* Add border for the menu item */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Hide overflow content */
}

.menu-item img {
    width: 100%; /* Make the image fill the container */
    display: block; /* Ensure the image is displayed as a block element */
    border-radius: 8px 8px 0 0; /* Rounded corners only at the top */
}




.container-bawah {
    background-color: #eb9553;
    color: #030303;
    text-align: center;
    padding: 20px 0;
    border-radius: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.column-bawah {
    width: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.column-bawah img {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: auto; /* Maintain aspect ratio */
}
.column-bawah h3 {
    color: #000000;
}

.column-bawah p {
    color: #000000;
}


.column-bawah iframe {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: 200px; /* Adjust the height as needed */
    border: 0;
    margin-bottom: 10px; /* Add spacing between the iframe and the address */
}

.column-bawah .address {
    color: #000000;
    font-size: 14px;
    margin-bottom: 0; /* Remove default margin */
}



/* Basic styling for the form */
#booking-form {
    max-width: 400px; /* Adjusted width to accommodate both elements */
    margin-right: 20px; /* Add some space between the two elements */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    float: left; /* Float the booking form to the left */
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

/* Full-width textarea */
.full-width textarea {
    width: 100%;
}

/* Adjustments for two-lane form */
.two-lane-form .form-group {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.two-lane-form .form-group.full-width {
    width: 100%;
}


.menu-selection {
    max-width: 300px; /* Adjusted width to accommodate both elements */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    float: left; /* Float the menu selection to the left */
}

.menu-selection h2 {
    margin-top: 0;
    font-size: 20px;
    color: #ffffff;
}

.menu-selection ul {
    list-style-type: none;
    padding: 0;
}

.menu-selection li {
    font-size: 16px;
    margin-bottom: 10px;
}

.menu-selection li:before {
    content: "\2022"; /* Bullet point */
    color: #4CAF50; /* Bullet point color */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


#food {
    text-align: center;
}

#drink {
    text-align: center;
}
.menu-item-3 {
    display: inline-block;
    margin: 10px;
    vertical-align: top;
    width: 200px; /* Adjust width as needed */
}

.menu-item-3 img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}


.menu-food {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 20px;
}

.menu-food h3 {
    margin-top: 0;
}

.menu-food p {
    margin-bottom: 0;
}


.menu-drink h3 {
    margin-top: 0;
}

.menu-drink p {
    margin-bottom: 0;
}




/* Styles for the Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
}

.popup-content {
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}







#total-price {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}



/* Style the cart container */
.cart-container-2 {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
}

/* Style the cart items */
#cartItems {
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Style the total price */
#totalPrice {
    font-weight: bold;
    font-size: 18px;
}





.delete-button-1 {
    background-color: #843b14; /* Red background color */
    color: #fff; /* White text color */
    border: none; /* No border */
    padding: 5px 10px; /* Padding around the button text */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor style */
    
}

/* CSS for delete button hover effect */
.delete-button-1:hover {
    background-color: #cc0000; /* Darker red when hovered */
}

/* CSS to center delete button horizontally */
.delete-button-1 {
    display: inline-block; /* Display as inline block */
    margin: 0 auto; /* Center horizontally */
}





.user-info {
    font-weight: bold;
    color: #000000;
    margin-bottom: 5px;
}


#checkout{
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #000000;
}

#cart {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    width: 100%; /* Set width to 100% */
    max-width: none; /* Remove max-width */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #000000;
}

#cart h2 {
    font-size: 24px;
    margin-bottom: 15px;
}




#complete {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #000000;
}



.payment-method {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.payment-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.payment-method p {
    font-size: 16px;
    margin-bottom: 10px;
}

.payment-method select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.payment-method select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}





