        
		.split-container {
            display: flex;
            width: 100%;
            height: calc(100vh - 75px); /* ลบความสูง Navbar */
            overflow: hidden;
            position: relative;
        }
        .left-content-side {
            width: 55%;
            height: 100%;
            overflow-y: auto;
            padding: 20px;
            -webkit-overflow-scrolling: touch;
            transition: width 0.3s ease, padding 0.3s ease;
            background: #ffffff;
            z-index: 5;
        }
        /* คลาสสำหรับการซ่อนฝั่งซ้าย */
        .left-content-side.collapsed {
            width: 0 !important;
            padding: 0 !important;
            overflow: hidden;
        }
        .right-map-side {
            width: 45%;
            height: 100%;
            position: relative;
            transition: width 0.3s ease;
            background: #e5e5e5; /* สีพื้นหลังกันพลาดระหว่างแผนที่โหลด */
        }
        /* เมื่อฝั่งซ้ายซ่อน ฝั่งขวา (แผนที่) จะขยายเต็ม 100% */
        .left-content-side.collapsed + .right-map-side {
            width: 100% !important;
        }
        #leaflet-map-pane {
            width: 100%;
            height: 100%;
            display: block;
        }
        
        /* ปุ่มเปิด/ปิด แผงควบคุมรายการซ้ายมือ */
        #toggle-sidebar-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 1000; /* ให้อยู่เหนือเลเยอร์แผนที่มาตรฐานของ Leaflet */
            background: #ffffff;
            border: 1px solid #dddddd;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 8px 12px;
            font-weight: bold;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.2s;
        }
        #toggle-sidebar-btn:hover {
            background: #f7f7f7;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
        }
        
        /* ปรับดีไซน์สำหรับการ์ดด้านซ้ายให้กดง่ายขึ้น */
        .place-card-item {
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .place-card-item:hover {
            transform: translateY(-2px);
        }

        /* สำหรับหน้าจอมือถือ (Responsive Mobile) */
        @media (max-width: 991.98px) {
            .split-container { 
                flex-direction: column-reverse;
                height: calc(100vh - 75px); 
            }
            .left-content-side { 
                width: 100% !important; 
                height: 55%;
                padding: 15px;
                transition: height 0.3s ease, padding 0.3s ease;
            }
            .left-content-side.collapsed {
                height: 0 !important;
                width: 100% !important;
                padding: 0 !important;
            }
            .right-map-side { 
                width: 100% !important; 
                height: 45%;
                transition: height 0.3s ease;
            }
            .left-content-side.collapsed + .right-map-side {
                height: 100% !important;
                width: 100% !important;
            }
            #toggle-sidebar-btn {
                top: auto;
                bottom: 15px;
                left: 15px;
            }
        }

        /* ปรับปรุงหมุดราคา ทรงวงรีพอดีกับข้อความ */
        .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;
        }

        /* ตกแต่งสไตล์ของการ์ด Popup ในแผนที่ Leaflet */
        .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;
            margin-bottom: 5px;
        }
        .map-btn-view {
            display: block;
            text-align: center;
            background-color: #222222;
            color: #ffffff !important;
            text-decoration: none !important;
            padding: 5px 0;
            border-radius: 6px;
            font-weight: 600;
            font-size: 11px;
        }