    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    html,
    body {
      height: 100%;
      overflow: hidden;
      /* Prevent global scroll */
    }

    .container {
      min-width: 1000px;
      max-width: 1800px;
      width: 100%;
      margin: 0 auto;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
    }




    .map-controls {
      padding: 10px;
      background: #f8f9fa;
      border-bottom: 1px solid #ccc;
    }

    .d-flex {
      display: flex;
    }

    .flex-wrap {
      flex-wrap: wrap;
    }

    .align-items-center {
      align-items: center;
    }

    .gap-3 {
      gap: 1rem;
    }

    .mb-3 {
      margin-bottom: 1rem;
    }

    .form-control {
      padding: 4px;
      font-size: 14px;
      width: 80px;
    }

    .btn {
      padding: 6px 12px;
      font-size: 14px;
      cursor: pointer;
    }

    .btn-primary {
      background-color: #d5c9a2;
      color: rgb(2, 41, 6);
      border: none;
      border-radius: 4px;
    }

    .btn-primary:hover {
      background-color: rgb(205, 150, 21);
      color: rgb(157, 58, 8);
      border: none;
      border-radius: 4px;
    }

    #gMap {

      flex: 1;
      overflow: hidden;
      padding: 30px;
      min-height: 0;
      /* critical for child scroll */
      width: 100%;

    }

    .main-content {
      display: flex;
      flex: 1;
      overflow: auto;
      min-height: 0;
      /* critical for child scroll */
      min-width: 0;
    }

    /* Small map style */
    .map-text-flex {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }

    .map-box {
      width: 500px;
      height: 400px;
      border: 1px solid #ccc;
      flex-shrink: 0;
    }

    #gMapSmall {
      width: 300px;
      height: 300px;
      flex-shrink: 0;
    }

    .text-box {
      flex: 1;
      min-width: 200px;
      padding: 20px;
    }


    .sidebarRoot {
      width: 300px;
      padding: 1rem;
      background-color: #f1f1f1;
      overflow-y: auto;
      border-right: 1px solid #ccc;
      position: sticky;
      top: 0;
      height: calc(100vh - 220px);

    }

    .sidebar {
      width: 300px;
      display: flex;
    
      flex-direction: column;
      padding: 1rem;
      background-color: #f1f1f1;
      overflow: auto;
      border-right: 1px solid #ccc;

      top: 0;
      height: calc(100vh - 220px);

    }

    #sidebarDiv {
      flex: 1;
      overflow: auto;
      /* enables vertical and horizontal scroll */
      padding: 20px;
    }

    .sidebar ul li {
      color: #a13108;
      /* or any color you prefer */
      margin-bottom: 0.6em;
      /* Adjust spacing as needed */

    }

    .sidebar ul li a {
      color: #d39437;
      text-decoration: none;
    }

    .sidebar ul li a:hover {
      color: rgb(157, 58, 8);
    }

    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
      }
    }

    .navbar {
      overflow: hidden;
      background-color: #d5c9a2;
      margin-bottom: 3rem;
      /* Adjust as needed */

    }

    .navbar a {
      float: left;
      font-size: 16px;
      color: rgb(2, 41, 6);
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }

    .subnav {
      float: left;
      overflow: hidden;
    }

    .subnav .subnavbtn {
      font-size: 16px;
      border: none;
      outline: none;
      color: rgb(2, 41, 6);
      padding: 14px 16px;
      background-color: inherit;
      font-family: inherit;
      margin: 0;
    }

    .navbar a:hover,
    .subnav:hover .subnavbtn {
      background-color: rgb(205, 150, 21);
      color: rgb(157, 58, 8);
    }

    .subnav-content {
      display: none;
      position: absolute;
      left: 0;
      background-color: rgb(205, 150, 21);
      width: 100%;
      z-index: 1;
    }


    .subnav-content a {
      float: left;
      color: rgb(2, 41, 6);
      text-decoration: none;
    }

    .subnav-content a:hover {
      background-color: #eee;
      color: rgb(157, 58, 8);
    }

    .subnav:hover .subnav-content,
    .subnav-content:hover {
      display: block;
    }