body {
    background-color: white;
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    margin: 0;
    color: #111827;
  }
  
  /* Header */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1rem; /* Adjusted padding for mobile */
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .logo-icon {
    width: 1rem;
    height: 1rem;
    color: #111827;
  }
  .header-title {
    font-size: 1.125rem;
    font-weight: bold;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 1rem; /* Adjusted gap for mobile */
  }
  .nav-links {
    display: none; /* Hide nav links by default on mobile */
  }
  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
  }
  .nav-links a.active {
    color: #2563eb;
  }
  .help-btn {
    display: none; /* Hide help button by default on mobile */
  }
  .avatar {
    background-size: cover;
    background-position: center;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
  }
  
  /* Hamburger menu icon - will need HTML changes too */
  .menu-icon {
    display: block; /* Show hamburger icon on mobile */
    cursor: pointer;
    z-index: 1000;
  }
  .menu-icon .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #111827;
  }

  /* Overlay menu for mobile */
  .overlay-menu {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .overlay-menu.show {
    display: flex;
  }
  .overlay-menu a {
    font-size: 1.5rem;
    padding: 1rem;
    color: #111827;
    text-decoration: none;
  }
  
  /* Search Container */
  .search-container {
    padding: 1rem; /* Adjusted padding for mobile */
  }
  .page-heading h1 {
    font-size: 1.375rem; /* Adjusted font size for mobile */
    font-weight: bold;
  }
  .page-heading p {
    font-size: 0.8rem; /* Adjusted font size for mobile */
    color: #6b7280;
    margin-bottom: 1rem;
  }
  .results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .result-card {
    display: flex;
    flex-direction: column; /* Stack elements vertically on mobile */
    gap: 0.75rem; /* Adjusted gap for mobile */
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 0.75rem; /* Adjusted padding for mobile */
  }
  .result-info h3 {
    font-weight: bold;
  }
  .result-info p {
    font-size: 0.875rem;
    color: #6b7280;
  }
  .view-route-btn {
    display: block; /* Make view route button full-width */
    background-color: #f3f4f6;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    padding: 12px; /* Increased padding for better touch target */
    margin-top: 0.5rem;
    width: 100%; /* Ensure full width on mobile */
    text-align: center;
  }
  .result-image {
    flex: 1;
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    height: 120px; /* Fixed height for image placeholder on mobile */
    width: 100%; /* Full width for image placeholder on mobile */
  }
  
  /* Footer */
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9fafb;
    padding: 2.5rem 0;
    gap: 1.5rem;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #6b7280;
    padding: 8px 12px; /* Add padding for better touch target */
    border-radius: 4px;
  }
  .footer p {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
  }
  .abc{
    color: black;
  }

  /* Media query for larger screens (e.g., tablets and desktops) */
  @media (min-width: 768px) {
    .header {
      padding: 0.75rem 2.5rem; /* Original padding for larger screens */
    }
    .header-right {
      gap: 2rem; /* Original gap for larger screens */
    }
    .nav-links {
      display: flex; /* Show nav links on larger screens */
    }
    .help-btn {
      display: block; /* Show help button on larger screens */
    }
    .menu-icon {
      display: none; /* Hide hamburger icon on larger screens */
    }
    .overlay-menu {
      display: none !important; /* Ensure menu is hidden on large screens */
    }
    .search-container {
      padding: 2rem 10rem; /* Original padding for larger screens */
    }
    .page-heading h1 {
      font-size: 1.5rem; /* Original font size for larger screens */
    }
    .page-heading p {
      font-size: 0.875rem; /* Original font size for larger screens */
    }
    .result-card {
      flex-direction: row; /* Horizontal layout on larger screens */
      gap: 1rem;
      padding: 1rem;
    }
    .result-image {
      height: auto; /* Auto height on larger screens */
      width: auto; /* Auto width on larger screens */
      flex: 1; /* Original flex for larger screens */
    }
  }