
    .lux-nav {
         background-color: #1c1c1c;
         padding: 1rem 1rem; /* ลด padding ซ้าย-ขวา จาก 1rem 2rem เป็น 1rem 1rem */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        position: relative;
        border-bottom: 1px solid #2b2b2b;

        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        display: flex;
        flex-wrap: nowrap;
    }

    .types_place-item {
        flex: 0 0 auto;
        color: #cb935d;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 1.2rem;
        position: relative;
        padding: 0.4rem 0;
        transition: color 0.3s;
        cursor: pointer;
    }

    .types_place-item:hover {
        color: #eac39a;
    }

    .types_place-item.active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -6px;
        height: 3px;
        background-color: #cb935d;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    #nav_types_place {
        overflow-x: auto !important;           /* ให้เลื่อนแนวนอน */
        -webkit-overflow-scrolling: touch;     /* smooth scroll บน iOS */
        white-space: nowrap !important;        /* ห้ามขึ้นบรรทัดใหม่ */
        flex-wrap: nowrap !important;          /* ห้าม wrap */
    }

    #nav_types_place.d-flex {
        flex-wrap: nowrap !important;          /* override d-flex */
    }

    #nav_types_place .types_place-item {
        flex: 0 0 auto !important;              /* ไม่ยืดหรือหด */
        display: inline-block !important;      /* เรียงแนวนอน */
        white-space: nowrap !important;        /* ห้ามตัดคำ */
    }
    .container-fluid {
      padding: 0;
      height: calc(100vh - 64px);
    }

    .sidebar {
        /* background-color: #F2F3F5; */
      /* background-color: #fff; */
      /* padding: 1.5rem 1rem; */
      /* border-right: 1px solid #eee; */
      height: 100%;
      /* overflow-y: auto; */
    }

    .place-item {
      background: #f1f1f1;
      border-radius: 5px;
      padding: 1rem;
      margin-bottom: 1rem;
      color: #333;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      border-left: 4px solid transparent;
    }

    .place-item:hover, .place-item.active {
      /* background-color: #fff5eb; */
      background-color: #cb935d;
      color: #fff5eb;
      border-left: 4px solid black;
      transform: translateX(2px);
    }

    .map {
      /* position: relative; */
      height: 100%;
      background-color: #eaeaea;
    }

    #map {
      padding: 0px !important;
      width: 100%;
      height: 500px;
      /* height: 100%; */
    }

    .details {
      background-color: #fff;
      /* padding: 2rem 1.5rem; */
      /* border-left: 1px solid #eee; */
      height: 100%;
      overflow-y: auto;
    }

    .details img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 1.25rem;
    }

    .details h2 {
      font-size: 1.5rem;
      color: #1c1c1c;
    }

    .details button {
      background: #cb935d;
      color: #fff;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 1rem;
      transition: background 0.3s;
    }

    .details button:hover {
      background-color: #a57545;
    }

    .details p {
      font-size: 1rem;
      color: #666;
    }

    /* @media (max-width: 768px) {
      .container-fluid {
        flex-direction: column;
        height: auto;
      }
      .sidebar, .details {
        height: auto;
        width: 100%;
      }
    } */
#steps_list {
    list-style: none;  /* ลบจุดหรือเลข */
    padding-left: 0;
}

#steps_list li {
    background-color: #f9f2e7;  /* สีพื้นอ่อนเข้ากับ #cb935d */
    border-left: 5px solid #cb935d;  /* แถบสีด้านซ้าย */
    margin-bottom: 10px;
    padding: 10px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #5a3e1b; /* สีข้อความเข้มๆ */
    border-radius: 5px;
    box-shadow: 0 1px 3px rgb(203 147 93 / 0.3);
}
