/* Basic layout */
        .container {
            display: flex;
            justify-content: space-between;
            margin-top: 0px;
        }
        #map {
            height: 350px;
            width: 100%;
            margin-bottom: 10px;
        }
        #business-details {
            width: 35%;
            margin-left: 20px;
        }
        #all-businesses {
            margin-top: 0px;
        }
        .business-item {
            margin-bottom: 0px;
            padding: 0px;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: inline-grid;
            width: 350px;
            height: 330px;
        }
        .business-item h5 {
            margin: 0;
            font-size: 1.2em;
            font-weight: bolder;
            padding-bottom: 10px ;
        }
        .business-sub {
            margin: 0;
        background: green;
        }
        .reset-map {
            margin: 0;
        background: yellow;
        }
        .request {
        padding: 5px;
        margin: 5px;
        color: white;
        background: green;
        }
        .rating {
        padding: 5px;
        margin: 5px;
        color: white;
        background: blue;
        }
        .test-item {
            margin-bottom: 0px;
            padding: 0px;
                align: left;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: inline-grid;
        }
        .sub-filter-container {
            display: none; /* Hidden initially */
        }

        /* Resetting margin and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Body background and font setup */
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
        }

        .homemenu {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #2c3e50;
            padding: 0px 0;
            position: relative;
        }

    .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #2c3e50;
      padding: 18px 0 12px 0;
      box-shadow: 0 2px 8px rgba(49,46,129,0.07);
    }
    .menu a {
      color: #fff;
      text-decoration: none;
      padding: 12px 28px;
      font-weight: 600;
      font-size: 1.08rem;
      letter-spacing: 1px;
      border-radius: 6px;
      margin: 0 6px;
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    .menu a:hover {
      background: #000;
      color: #fff;
    }


        /* Animation for dropdown */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Add a little hover effect on the dropdown container */
        .dropdown {
            position: relative;
        }

