/* === Fix mobile white edge issue === */
/*html, body {
/*    overflow-x: hidden;              /* Prevent horizontal scroll gaps */
/*    background-color: #212529;       /* Match Bootstrap bg-dark */
/*}

/* Ensure navbar always looks solid black */
/* .navbar {
/*    background-color: #000 !important;	
/*}

/* === Fix navbar right-side white line on mobile zoom === */
.navbar {
    background-color: #000 !important;
    position: relative;
    left: 0;
    right: 0;
    width: 100vw;    /* force cover full viewport width */
    max-width: 100vw;
    margin: 0;
    padding: 0.5rem 1rem;
    box-sizing: border-box;}

/* Ensure no horizontal white gap on zoom */
html, body {
    background-color: #f8f9fa;  /* keep page background white */
}

/* === Navbar link hover/tap highlight === */
.navbar .nav-link {
    color: #fff; /* default white */
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom 0.2s;
}

/* Hover / tap feedback */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #FEC033;           /* McQuek’s yellow */
    background-color: #333;   /* subtle dark background */
    border-radius: 6px;
}

/* Active page link highlight (with yellow underline bar) */
.navbar .nav-link.active {
    color: #FEC033 !important;
    font-weight: 600;
    border-bottom: 3px solid #FEC033; /* yellow underline */
}

/* Dropdown menu items hover/tap */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    color: #FEC033;
    background-color: #212529;  /* match dark theme */
}

/* Dropdown active item */
.dropdown-menu .dropdown-item.active {
    color: #FEC033 !important;
    background-color: #333 !important;
    font-weight: 600;
}

.slot-btn.booked {
    background-color: #dc3545 !important; /* Bootstrap danger red */
    color: #fff !important;
    border: 1px solid #dc3545 !important;
}


.wa-btn {
    font-size: 1rem;           /* adjust emoji size */
    width: 32px;               /* same size as btn-sm height */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;              /* remove default border */
    background: transparent;   /* transparent background */
    cursor: pointer;
    padding: 0;
}

.wa-btn:focus,
.wa-btn:active {
    outline: none !important;  /* remove black box */
    box-shadow: none !important;
}

<style>
  .arriving-info-content img {
      max-width: 100%;      /* scale down image */
      height: auto;         /* keep aspect ratio */
      border-radius: 8px;
      margin-bottom: 10px;
  }
  .arriving-info-content {
      font-size: 0.95rem;
      line-height: 1.5;
      word-wrap: break-word; /* avoid text overflow */
  }
</style>

