body {
      padding-top: 80px;
      /* fixed navbar space */
    }

    .navbar {
      background-color: #e25102;
    }

    .navbar-brand {
      font-weight: 700;
      color: #fff !important;
    }

    .nav-link {
      color: #fff !important;
      font-weight: 500;
      padding: 8px 15px;
    }

    .nav-link:hover,
    .nav-link.active {
      background: #fff;
      color: #e25102 !important;
      border-radius: 6px;
    }

    /* Remove bullets safety */
    .navbar-nav {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    /* Button radius */
    .btn {
      border-radius: 20px;
    }

    /* Search Overlay */
    .search-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      z-index: 9999;
      padding: 15px;
    }

    .search-overlay.active {
      display: block;
    }

    .search-box {
      width: 100%;
      max-width: 600px;
      margin: auto;
      margin-top: 15vh;
    }

    .close-search {
      position: absolute;
      top: 15px;
      right: 15px;
      color: #fff;
      font-size: 28px;
      background: none;
      border: none;
    }

    .search-results {
      background: #fff;
      max-height: 50vh;
      overflow-y: auto;
    }

    .search-results a {
      display: block;
      padding: 12px;
      border-bottom: 1px solid #eee;
      text-decoration: none;
      color: #000;
    }

    .search-results a:hover {
      background: #f1f1f1;
    }