body {
    margin: 0;
    font-family: Saudagar, sans-serif;
    background-color: #8DA47D;
    color: black;
    font-size: 14px;
    font-weight: bold;
    -ms-overflow-style: scrollbar;
}
body::-webkit-scrollbar-thumb {
    background-color: black;
}
.header {
    display: flex;
    position: fixed;
    align-items: left;
    background-color: #8DA47D;
    top: 0;
    z-index: 1000;
    width: 100%;
    justify-content: space-between; /* Distribute space between items */
    height: 100px;
    padding: 20px 15px; /* Add padding to create space between the edges */
    transition: box-shadow 0.3s ease;
}

.header-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow when scrolled */
}

.logo-container {
    display: flex;
    align-items: center;
}

.center-logo {
    width: 210px;
    height: 210px;
    flex-shrink: 0;
    padding-right: 30px;
}

.cart-icon {
    position: relative;
    bottom: 4.5px;
    right: 30px; /* Use relative positioning */
}

.cart-icon img {
    width: 75px;
    height: 75px;
}

.cart-notification {
    position: absolute;
    bottom: 32px;
    right: 12px;
    color: black;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px; /* Adjust font size */
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    width: 90%;
}

.menu-description {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-description h2 {
    font-size: 1.5em;
    margin-bottom: 0.2em;
    color: black;
    font-weight: bold;
}

.menu-description p {
    margin: 0.5em 0;
    color: black;
    font-weight: bold;
}

.menu-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.option-button {
    background-color: #8DA47D;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    text-align: center;
    cursor: pointer;
}

.option-button p {
    margin: 5px 0;
    color: black;
    font-weight: bold;
}

.footer {
    padding: 20px;
    background-color: #8DA47D;
    text-align: center;
    color: black;
    font-weight: bold;
}

main {
    padding: 160px 20px 20px; /* Add top padding equal to header height + margin */
    max-width: 1200px;
    margin: 0 auto;
}

.cart {
    background-color: #8DA47D;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cart h1 {
    margin-top: 0;
}

.cart-items {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
    margin-left: 20px;
}

.cart-item-details h2 {
    margin: 0 0 10px;
    font-size: 16px;
}

.cart-item-details p {
    margin: 5px 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-item-actions .remove-button {
    background-color: #8DA47D;
    color: #8DA47D;
    width: 30px;
    height: 30px;
    border: none;
    padding: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.cart-item-actions .remove-button .trash-icon {
    width: 20px;
    height: 20px;
}

.cart-summary {
    text-align: right;
    margin-top: 20px;
}

.cart-summary p {
    font-size: 18px;
    font-weight: bold;
}

.checkout-button {
    background-color: #2e303f;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.checkout-button:hover {
    background-color: #2e303f;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

.seat-input {
    margin: 20px 0;
    text-align: left;
}

.seat-input input {
    width: 18%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 16px;
}

.seat-input label {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}
.note-input {
    margin: 20px 0;
    text-align: left;
}

.note-input textarea {
    width: 90%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 16px;
    resize:none; /* Allows vertical resizing */
}

.note-input label {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}
/* Hide the default scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

/* The scrollbar track */
::-webkit-scrollbar-track {
    background: #a5b19d; /* Color of the track (optional) */
}

/* The scrollbar handle */
::-webkit-scrollbar-thumb {
    background: #000; /* Black color for the scrollbar handle */
    border-radius: 6px; /* Rounded corners for the scrollbar handle */
}

/* Scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #333; /* Darker black on hover */
}
/* Scrollbar track */
* {
    scrollbar-width: thin;
    scrollbar-color: black #a5b19d; /* Black scrollbar handle with a track color */
}

/* Optional: Only apply this if you want to customize the scrollbar handle on hover */
* {
    scrollbar-width: thin;
    scrollbar-color: #333 #a5b19d; /* Darker black on hover */
}
