    html,
    body {
        margin: 0;
        padding: 0;
        height: 100%;
        font-family: system-ui, sans-serif;
    }

    footer {
        display: none;
    }

     #map {
        min-height: 100vh;
        width: 100%;
    }

     .maplibregl-ctrl-bottom-right {
        bottom: 80px;
        right: 24px;

        @media(max-width: 768px){
                bottom: 260px;
                right: 10px;
        }
    }

    .status {
        position: absolute;
        bottom: 10px;
        right: 24px;
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        font-family: "anuphansemibold";
    }

    .search-box-wrap {
        position: absolute;
        top: 105px;
        right: 40px;
        z-index: 11;
        width: 275px;
    }

    .search-box {
        display: flex;
        align-items: center;
        width: 100%;
        height: 39px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.16), inset 0 2px 2px 0 rgba(255, 255, 255, 0.52);
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .search-box input {
        flex: 1;
        min-width: 0;
        height: 100%;
        border: none;
        background: none;
        outline: none;
        padding: 0 8px 0 16px;
        font-size: 16px;
        font-family: inherit;
        color: #000;
    }

    .search-box input::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }

    .search-box .search-submit {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 39px;
        height: 100%;
        border: none;
        background: none;
        padding: 0 12px 0 0;
        cursor: pointer;
    }

    .search-results {
        margin-top: 8px;
        max-height: 320px;
        overflow-y: auto;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.16);
    }

    .search-results .search-result-item {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 10px 14px;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .search-results .search-result-item:last-child {
        border-bottom: none;
    }

    .search-results .search-result-item:hover,
    .search-results .search-result-item.active {
        background: rgba(0, 0, 0, 0.04);
    }

    .search-results .result-icon {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-results .result-icon svg {
        display: block;
    }

    .search-results .result-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
        flex: 1;
    }

    .search-results .result-name {
        display: block;
        font-size: 14px;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-results .result-meta {
        display: block;
        font-size: 12px;
        color: #666;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-results .search-result-empty {
        padding: 14px;
        font-size: 13px;
        color: #666;
        text-align: center;
    }

    @media (max-width: 768px) {
        .search-box-wrap {
            left: 25px;
            right: 25px;
            top: 80px;
            width: auto;
        }
    }

    .filter-panel {
        position: absolute;
        top: 105px;
        left: 40px;
        z-index: 999999999 !important;
        background: rgba(255, 255, 255, 0.23);
        backdrop-filter: blur(19px);
        -webkit-backdrop-filter: blur(19px);
        border: 0.937px solid rgba(0, 0, 0, 0.26);
        box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.11), inset 0 2px 2px 0 rgba(255, 255, 255, 0.52);
        padding: 20px 18px;
        border-radius: 20px;
        font-size: 14px;
        width: 277px;
        max-height: calc(100% - 120px);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .filter-panel h2.panel-title {
        margin: 0 0 6px;
        font-size: 24px;
        font-weight: 400;
        color: #000;
        font-family: "bkk_draft5regular";
    }

    .filter-panel select {
        min-width: 100%;
        font-size: 14px;
        font-family: "sarabunregular", inherit;
        padding: 9px 10px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.45);
        border: 1px solid rgba(0, 0, 0, 0.28);
        box-shadow: 0 3.324px 33.235px 0 rgba(0, 0, 0, 0.06);
        border-radius: 8px;
        color: #000;
        appearance: none;
        -webkit-appearance: none;
    }

    .filter-panel .relative {
        position: relative;
    }

    .filter-panel .select-caret {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .filter-panel .result-count {
        margin: 6px 0 0;
        font-size: 14px;
        color: #000;
        font-family: "sarabunregular", inherit;
    }

    .filter-panel-handle {
        display: none;
    }

    @media (max-width: 768px) {
        .filter-panel {
            top: auto;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-height: 85vh;
            border-radius: 20px 20px 0 0;
            padding: 12px 18px 24px;
            box-sizing: border-box;
            transform: translateY(calc(100% - 80px));
            transition: transform 0.3s ease;
            touch-action: none;
        }

        .filter-panel.expanded {
            transform: translateY(0);
        }

        .filter-panel.dragging {
            transition: none;
        }

        .filter-panel-handle {
            display: block;
            width: 168px;
            height: 8px;
            margin: 0 auto 12px;
            border-radius: 7px;
            background: rgba(0, 0, 0, 0.27);
            cursor: grab;
        }
    }

    .dropoff-popup-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(5, 5, 5, 0.25);
        z-index: 999999998;
    }

    .maplibregl-popup.dropoff-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        z-index: 1000000000 !important;
    }

    .maplibregl-popup.dropoff-popup .maplibregl-popup-tip {
        display: none;
    }

    .maplibregl-popup.dropoff-popup .maplibregl-popup-content {
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.11);
        width: 278px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .maplibregl-popup.dropoff-popup .maplibregl-popup-close-button {
        top: 12px;
        right: 12px;
        width: 27px;
        height: 27px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: #000;
    }

    .maplibregl-popup.dropoff-popup .maplibregl-popup-close-button svg {
        display: block;
    }

    @media (min-width: 769px) {
        .maplibregl-popup.dropoff-popup {
            top: 55%;
            left: auto;
            right: 40px;
            transform: translateY(-50%) !important;
        }
    }

    .dropoff-card {
        font-family: inherit;
        color: #000;
    }

    .dropoff-card .card-header {
        padding: 20px 20px 16px;
        background: linear-gradient(to bottom, var(--dropoff-accent-light, #cae6ff), #fff);
    }

    .dropoff-card .card-title {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.4;
        font-family: "bkk_draft5regular";
    }

    .dropoff-card .card-meta {
        margin: 8px 0 0;
        font-size: 14px;
        line-height: 1.7;
        font-family: "sarabunregular";
    }

    .dropoff-card .card-body {
        padding: 0 20px 20px;
    }

    .dropoff-card .stat-row {
        display: flex;
        align-items: start;
        gap: 10px;
        padding: 10px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .dropoff-card .stat-row:first-child {
        border-top: none;
    }

    .dropoff-card .stat-row svg {
        display: block;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .dropoff-card .stat-label {
        margin: 0;
        font-size: 14px;
        font-family: "anuphan";
        color: #000;
        padding-right:6px;
    }

    .dropoff-card .stat-value {
        margin: 2px 0 0;
        font-size: 20px;
        line-height: 1.2;
        font-family: "anuphanmedium";
        color: #000;
    }

    .dropoff-card .card-actions {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dropoff-card .btn {
        display: block;
        text-align: center;
        border-radius: 76px;
        padding: 13px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        box-sizing: border-box;
        font-family: "anuphan";
    }

    .dropoff-card .btn-solid {
        background: #000;
        border: none;
        color: #fff;
    }
