 /* สไตล์แบ่งหน้าจอแบบ  */
    /* สไตล์ปุ่ม Save บนรูป */
.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;
    transition: 0.3s;
}
.save-btn-overlay:hover { transform: scale(1.1); background: #fff; }
.save-btn-overlay.saved { color: #ff385c; }


	/* ปุ่มกลับขึ้นด้านบน (To Top Button) */
#btn-to-top {
    position: fixed;
    bottom: 25px;
    right: 20px; /* วางไว้ฝั่งซ้ายเผื่อหลบหน้าต่างแผนที่บนมือถือ หรือเปลี่ยนเป็น right: 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;
    }
}
	