  /* สไตล์แบ่งหน้าจอแบบ  Layout */
        body, html {
            margin: 0; padding: 0; height: 100%; overflow: hidden;
            font-family: 'Sarabun', sans-serif;
        }
        .split-container {
            display: flex;
            width: 100%;
            height: calc(100vh - 75px); /* ลบความสูง Navbar */
            overflow: hidden;
        }
        .left-content-side {
            width: 55%;
            height: 100%;
            overflow-y: auto;
            padding: 20px;
            -webkit-overflow-scrolling: touch; 
        }
        .right-map-side {
            width: 45%;
            height: 100%;
            position: relative;
        }
        #leaflet-map-pane {
            width: 100%;
            height: 100%;
        }
        
        .place-card-item {
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .place-card-item:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 991.98px) {
            .split-container { 
                flex-direction: column-reverse; 
                height: calc(100vh - 75px); 
            }
            .left-content-side { 
                width: 100%; 
                height: 55%; 
                padding: 15px;
            }
            .right-map-side { 
                width: 100%; 
                height: 45%; 
            }
        }

        .price-marker-label {
            background-color: #ffffff;
            color: #222222;
            font-weight: bold;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 20px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.25);
            border: 1px solid #dddddd;
            display: inline-block;
            white-space: nowrap;
            text-align: center;
        }
        .price-marker-label:hover {
            background-color: #222222;
            color: #ffffff;
            border-color: #222222;
        }
        
        .leaflet-div-icon {
            background: transparent !important;
            border: none !important;
        }

        .leaflet-popup-content-wrapper {
            padding: 0;
            overflow: hidden;
            border-radius: 12px;
        }
        .leaflet-popup-content {
            margin: 0 !important;
            width: 200px !important;
        }
        .map-card-popup img {
            width: 100%;
            height: 110px;
            object-fit: cover;
            display: block;
        }
        .map-card-body {
            padding: 10px;
        }
        .map-card-title {
            font-size: 13px;
            font-weight: bold;
            color: #222;
            margin: 0 0 4px 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .map-card-sub {
            font-size: 11px;
            color: #666;
            margin: 0 0 8px 0;
        }
        .map-btn-nav {
            display: block;
            text-align: center;
            background-color: #1a73e8;
            color: #ffffff !important;
            text-decoration: none !important;
            padding: 5px 0;
            border-radius: 6px;
            font-weight: 600;
            font-size: 11px;
        }
        
        .save-btn-overlay { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; }
        .save-btn-overlay.saved { color: #ff385c; }
        .img-container { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
        .place-img { width: 100%; height: 100%; object-fit: cover; }
        .price-badge { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,0.9); padding: 4px 8px; border-radius: 6px; font-weight: bold; font-size: 0.85rem; width: 45px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; }
        
        #btn-to-top {
            position: fixed;
            bottom: 25px;
            left: 20px; 
            z-index: 9999;
            width: 45px;
            height: 45px;
            background-color: #000;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            display: none; 
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.2s;
        }
        #btn-to-top:hover {
            transform: scale(1.05);
            background-color: #000;
        }
        @media (max-width: 991.98px) {
            #btn-to-top {
                bottom: 20px;
                right: 20px; 
                left: auto;
            }
        }