body {
    margin: 0;
padding: 0;
background: linear-gradient(to bottom, white, grey, black);
font-family: 'Segoe UI', sans-serif;
}

.navbar-brand img {
width: 100px;
}

.nav-link {
font-weight: 500;
}

.custom-bg {
position: relative;
background: linear-gradient(to top, #e0f7fa, #3181dd);
height: 400px;
clip-path: ellipse(100% 100% at 50% 100%);
z-index: 1;
}

.hero-content {
text-align: center;
padding-top: 40px;
color: white;
}

.hero-content h2 {
font-weight: 700;
}

.search-box {
background: white;
padding: 25px;
border-radius: 20px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
max-width: 1000px;
margin: auto;
margin-top: 40px;
z-index: 2;
position: relative;
}

.search-btn {
background-color: #d84e55;
color: white;
font-weight: bold;
border-radius: 15px;
}

.filter-btn {
    margin: 5px;
  }
  .bus-card {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .highlight-strip {
    background-color: #fce3db;
    padding: 10px;
    text-align: center;
    font-weight: 500;
  }
  .code-strip {
    background-color: #fff6e5;
    padding: 10px;
    border-left: 5px solid #ff9900;
  }
  .bus-provider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .scroll-sidebar {
    max-height: 70vh; /* Adjust as needed */
    overflow-y: auto;
    position: sticky;
    top: 0;
    padding-right: 10px;
  }


.d-flex.overflow-auto::-webkit-scrollbar {
  display: none;
}
.d-flex.overflow-auto {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

