
        body { font-family: 'Inter', sans-serif; margin: 0; overflow: hidden; background: #0b0e14; }
        #map { height: 100vh; width: 100vw; }
        
        .custom-marker {
            background: rgba(0, 255, 194, 0.2);
            border: 2px solid #00ffc2;
            border-radius: 50%;
            box-shadow: 0 0 15px #00ffc2;
        }

        .leaflet-control-geosearch {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: 100%;
            max-width: 400px;
            margin: 0 !important;
            border: none !important;
        }

        .leaflet-control-geosearch form {
            background-color: #111827 !important;
            border: 1px solid #374151 !important;
            border-radius: 12px !important;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
        }

        .leaflet-control-geosearch form input {
            color: #f3f4f6 !important;
            background: transparent !important;
            height: 45px !important;
            padding-left: 15px !important;
        }

        #side-panel {
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            z-index: 1100;
        }






        
        
/* ===============================
   Mobile Bottom Navigation
=============================== */
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none; /* hidden by default for PC */
}

@media screen and (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    color: #fff;
    border-top: 1px solid #222;
    z-index: 1000;
    padding: 5px 0;
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
  }

  .mobile-bottom-nav img {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
  }

  /* Hide the sidebar on mobile */
  .sidebar {
    display: none;
  }

  /* Adjust main content padding */
  .content {
    padding-bottom: 60px; /* space for bottom nav */
  }
}










/* ===============================
   Back Button Styling
=============================== */
.back-btn {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 2000; /* Map එකටත් උඩින් පේන්න */
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.back-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.back-btn:hover {
    background: #00ffc2;
    color: #0b0e14;
    border-color: #00ffc2;
    box-shadow: 0 0 20px rgba(0, 255, 194, 0.4);
}

.back-btn:hover svg {
    transform: translateX(-4px); /* Hover කරද්දී arrow එක පිටිපස්සට යන animation එක */
}

/* Mobile එකේදී බටන් එක පොඩ්ඩක් කුඩා කරන්න */
@media screen and (max-width: 768px) {
    .back-btn {
        top: 80px;
        left: 15px;
        padding: 8px 14px;
        font-size: 13px;
        
    }
}








.category-btn {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    border-width: 1px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: fit-content;
}

.category-btn:hover {
    color: #000;
    transform: translateX(5px);
}

/* Mobile එකේදී bottom navigation එකට උඩින් තියන්න */
@media screen and (max-width: 768px) {
    .fixed.bottom-20 {
        bottom: 80px; /* Mobile nav එකට උඩින් තියන්න */
    }
}









/* Pulse Animation */
.pulse-marker {
    background: #00ffc2;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 0 10px #00ffc2;
}

.pulse-marker::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: 2px solid #00ffc2;
    animation: pulsate 1.5s ease-out infinite;
    opacity: 0;
}

@keyframes pulsate {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}








.premium-btn {
    background: rgba(15, 23, 42, 0.7); /* Dark semi-transparent */
    backdrop-filter: blur(12px); /* Glass effect */
    -webkit-backdrop-filter: blur(12px);
    color: #f8fafc;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    width: fit-content;
}

.premium-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 20px rgba(0, 255, 194, 0.2); /* Soft glow */
}

.premium-btn active {
    transform: scale(0.95);
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .fixed.bottom-10 {
        bottom: 75px; /* Mobile navigation එකට උඩින් නිවැරදිව තැබීමට */
        left: 12px;
    }
    .premium-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}





#side-panel {
    z-index: 9999 !important; /* හැමදේටම උඩින් පැනල් එක තියන්න */
    position: fixed; /* මැප් එකත් එක්කම හෙලවෙන්නේ නැති වෙන්න */
}
#side-panel {
    transition: transform 0.4s ease-in-out;
}



@media screen and (max-width: 768px) {
    .fixed.top-5.right-5 {
        top: 85px !important;
        right: 15px !important;
    }
    
    #mapStyle {
        padding: 10px 15px; /* Mobile එකේදී select කරන්න ලේසි වෙන්න */
        font-size: 12px;
    }
}

