.preorderNavbar {
    background-color: #39404a; /* A slightly lighter shade than #343a40 */
}

.preOrderBtnDefault {
    background-color: #fa9628 !important;
    border-color: #fa9628 !important;
    color: #fff !important;
  }

  .preOrderBtnDefaultVariant {
    background-color: gray !important;
    color: white !important;
  }
  
  .headerBottomBtnArrowRight {
    position: relative;
    /* padding-right: 2.5em; /* Adjust space for the icon and arrow */
    margin-right: 24px; /* Space between buttons */
  }
  
  .headerBottomBtnArrowRight::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px; /* Position arrow outside the button */
    width: 0;
    height: 0;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.8em solid white; /* Arrow color, matching Bootstrap's primary blue */
    transform: translateY(-50%);
  }
  .businessInfo {
    text-align: right;
    color: white; /* Text color for better visibility on dark background */
  }
  
  .businessName {
    font-weight: bold;
    font-size: larger;
  }

  .businessWorkingHours {
    font-size: small;
  }
 
  .businessTextColor{
    color:#fa9628 !important
  }