body {
    margin: 0;
    font-family: Saudagar, sans-serif;
    background-color: #8DA47D;
    color: black;
    font-size: 14px;
    font-weight: bold; /* Make the font 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;
    width: 100%;
    z-index: 1000;
    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; /* Smooth transition for shadow */
}
.sides-extra-section {
    position: absolute;
    right: 61px;
    top: 95px; /* Position it below the cart icon */
}

.sides-extra-link {
    color: black;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: underline;
}
.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;
}
.drink-options {
    margin-top: 20px;
    text-align: center;
}
.drink-options select {
    margin-top: 10px;
    padding: 5px;
    font-size: 1em;
    border: 1px solid black;
    border-radius: 5px;
    background-color: #8DA47D;
}

.drink-options label {
    font-size: 1.1em;
    color: black; /* Change font color to black */
    font-weight: bold; /* Make the font bold */
}
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding: 140px 20px 20px; /* Add top padding equal to header height + margin */
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    width: 90%;
}

.menu h1 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
}

.menu-description {
    text-align: center; /* Center text within the description */
    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; /* Change font color to black */
    font-weight: bold; /* Make the font bold */
}

.menu-description p {
    margin: 0.5em 0;
    color: black; /* Change font color to black */
    font-weight: bold; /* Make the font bold */
}

.menu-description .weight {
    font-size: 1em;
}

.menu-description .description {
    font-size: 1em;
    color: black; /* Change font color to black */
    font-weight: bold; /* Make the font bold */
}

.menu-options {
    display: flex;
    justify-content: center; /* Center options */
    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;
  transition: background-color 0.5s ease, transform 0.5s ease;
  color:white;
  font-weight:bold;
  text-decoration:none;
  background-color:#8DA47D;
  display:block;
  position:relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-shadow: 0px 1px 0px #000;
  filter: dropshadow(color=#000, offx=0px, offy=1px);
  
  -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #8DA47D;
  -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #8DA47D;
  box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #8DA47D;
  
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.option-button:active {
    top:10px;
    background-color:#8DA47D;
    
    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #8DA47D;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #8DA47D;
    box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #8DA47D;
}

.option-button:after {
    content:"";
    height:100%;
    width:100%;
    padding:4px;
    position: absolute;
    bottom:-15px;
    left:-4px;
    z-index:-1;
    background-color:#2B1800;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.option-button p {
    margin: 5px 0;
    color: black; /* Change font color to black */
    font-weight: bold; /* Make the font bold */
}
/* Disabled button styles */
.show-extras-btn:disabled {
    background-color: #ccc; /* Grey background when disabled */
    cursor: not-allowed; /* Show not-allowed cursor */
    opacity: 0.6; /* Reduced opacity when disabled */
  }
  

.show-extras-btn {
    background-color: #8DA47D;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
/* Disabled button styles */
.show-extras-btn-1:disabled {
    background-color: #ccc; /* Grey background when disabled */
    cursor: not-allowed; /* Show not-allowed cursor */
    opacity: 0.6; /* Reduced opacity when disabled */
  }
  

.show-extras-btn-1 {
    background-color: #8DA47D;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.modal {
    display: none;  /* Hidden by default */
    position: fixed;
    z-index: 1000;  /* Ensure modal is on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;  /* Center horizontally */
    align-items: center;  /* Center vertically */
    background-color: rgba(0, 0, 0, 0.4);  /* Dark transparent background */
    overflow: hidden;  /* Disable page scroll when modal is open */
   
}

/* Modal Content */
.modal-content {
    background-color: #8DA47D;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    max-height: 500px;  /* Fixed height for the modal */
    overflow-y: auto;  /* Allow scrolling inside the modal */
    border-radius: 8px;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);  /* Stronger shadow for clearer focus */
    margin: auto;
    position: relative;
    transform: translateY(0);  /* Remove unwanted vertical offsets */
}

/* Modal Overlay */
.modal::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);  /* Dark overlay */
    z-index: -1;
}

/* Close button */
.close-btn {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
}
.close-btn-1 {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn-1:hover,
.close-btn-1:focus {
    color: #aaa;
    text-decoration: none;
    cursor: pointer;
}

/* Center modal content and make clear */
.modal-content h3 {
    color: black;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.hidden{
    display:none;
}


.footer {
    padding: 20px;
    background-color: #8DA47D;
    text-align: center;
    color: black; /* Change font color to black */
    font-weight: bold; /* Make the font bold */
}
/* 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 */
}
