/* ============================================
   Health Station Map – Premium Styles
   ============================================ */

/* ---------- Reset & Foundations ---------- */
.hm-app-container,
.hm-app-container * {
    box-sizing: border-box;
}

:root {
    /* Brand Palette */
    --blue-900: #0f2b46;
    --blue-700: #164e78;
    --blue-600: #1a6aab;
    --blue-500: #2078c4;
    --blue-400: #3b9be5;
    --blue-100: #e8f4fd;
    --blue-50:  #f0f8ff;

    --green-600: #1a8a5f;
    --green-500: #22a96e;
    --green-400: #30c47e;
    --green-100: #e6f9f0;

    --gray-900: #1a1a2e;
    --gray-700: #3d3d56;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50:  #f9fafb;

    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 6px 16px rgba(0,0,0,0.06);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Main Container ---------- */
.hm-app-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: var(--hm-height, 620px);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Sidebar ---------- */
.hm-sidebar {
    width: 420px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    position: relative;
    z-index: 2;
}

/* Sidebar Header */
.hm-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
    gap: 12px;
}

.hm-sidebar-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hm-btn-find-nearest {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--green-500);
    background: var(--white);
    border: 2px solid var(--green-500);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.hm-btn-find-nearest::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
    z-index: 0;
    border-radius: inherit;
}

.hm-btn-find-nearest:hover {
    color: var(--white);
    border-color: var(--green-500);
    box-shadow: 0 4px 16px rgba(34, 169, 110, 0.3);
}

.hm-btn-find-nearest:span {
    color: var(--white);
}

.hm-btn-find-nearest:hover::before {
    transform: scaleX(1);
}

.hm-btn-find-nearest svg,
.hm-btn-find-nearest span {
    position: relative;
    z-index: 1;
}

.hm-btn-find-nearest:active {
    transform: scale(0.97);
}

/* Dropdown */
.hm-dropdown-wrapper {
    position: relative;
    margin: 0 24px 16px;
}

.hm-station-select {
    width: 100%;
    padding: 12px 44px 12px 16px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    color: var(--gray-700);
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.hm-station-select:hover {
    border-color: var(--blue-400);
}

.hm-station-select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(32, 120, 196, 0.15);
}

.dropdown-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    transition: transform var(--transition-fast);
}

/* Station List */
.hm-station-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px 16px;
    scroll-behavior: smooth;
}

.hm-station-list::-webkit-scrollbar {
    width: 6px;
}

.hm-station-list::-webkit-scrollbar-track {
    background: transparent;
}

.hm-station-list::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

.hm-station-list::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Station Card */
.hm-app-container .station-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    margin-bottom: 8px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.hm-app-container .station-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-md) + 2px);
    border: 2px solid transparent;
    transition: border-color var(--transition-base);
    pointer-events: none;
}

.hm-app-container .station-card:hover {
    background: var(--blue-50);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.hm-app-container .station-card.active {
    background: var(--blue-100);
    border-color: var(--blue-500);
    box-shadow: var(--shadow-md);
}

.hm-app-container .station-card.active::after {
    border-color: var(--blue-400);
}

/* Card Image */
.hm-app-container .station-card__img {
    width: 80px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-100);
    box-shadow: var(--shadow-sm);
}

/* Card Body */
.hm-app-container .station-card__body {
    flex: 1;
    min-width: 0;
}

.hm-app-container .station-card__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 3px;
    line-height: 1.3;
}

.hm-app-container .station-card__address {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Card Actions */
.hm-app-container .station-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--blue-600);
    background: var(--blue-50);
    border: 1.5px solid var(--blue-400);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-phone:hover {
    background: var(--blue-100);
    box-shadow: 0 2px 8px rgba(32, 120, 196, 0.2);
}

.btn-phone svg {
    width: 13px;
    height: 13px;
}

.btn-phone--disabled {
    color: var(--gray-400);
    background: var(--gray-100);
    border-color: var(--gray-300);
    cursor: default;
}

.btn-phone--disabled:hover {
    background: var(--gray-100);
    box-shadow: none;
}

.btn-website {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #15803d;
    background: #f0fdf4;
    border: 1.5px solid #4ade80;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-website:hover {
    background: #dcfce7;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    color: #166534;
}

.btn-website svg {
    width: 13px;
    height: 13px;
}

.btn-website--disabled {
    color: var(--gray-400);
    background: var(--gray-100);
    border-color: var(--gray-300);
    cursor: default;
}

.btn-website--disabled:hover {
    background: var(--gray-100);
    box-shadow: none;
    color: var(--gray-400);
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(26, 106, 171, 0.25);
}

.btn-directions:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
    box-shadow: 0 4px 14px rgba(26, 106, 171, 0.35);
    transform: translateY(-1px);
}

.btn-directions svg {
    width: 14px;
    height: 14px;
}

/* ---------- Map Area ---------- */
.hm-map-area {
    flex: 1;
    position: relative;
    min-width: 0;
}

.hm-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Leaflet overrides */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 18px !important;
    color: var(--gray-700) !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    transition: background var(--transition-fast) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--gray-100) !important;
}

.leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255,255,255,0.8) !important;
    padding: 2px 8px !important;
}

/* Fix: NukeViet theme sets img{max-width:100%} which breaks Leaflet tiles */
.leaflet-container img {
    max-width: none !important;
    max-height: none !important;
}
.leaflet-tile-pane {
    opacity: 1 !important;
}

/* ---------- Info Card Overlay ---------- */
.hm-app-container .info-card {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1000;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 18px;
    min-width: 280px;
    max-width: 340px;
    transition: all var(--transition-smooth);
    animation: slideInCard 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--gray-200);
}

.hm-app-container .info-card.hidden {
    display: none;
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hm-app-container .info-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.hm-app-container .info-card-header h2 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    flex: 1;
}

.hm-app-container .info-card-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.info-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--blue-600);
    background: var(--blue-50);
    border: 1.5px solid var(--blue-400);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.info-action-btn:hover {
    background: var(--blue-100);
    box-shadow: 0 2px 8px rgba(32, 120, 196, 0.2);
    transform: scale(1.08);
}

.info-action-btn--primary {
    color: var(--white);
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.info-action-btn--primary:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
    box-shadow: 0 2px 8px rgba(26, 106, 171, 0.35);
}

.info-address {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.4;
    margin-bottom: 8px;
}

.info-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
}

.hm-app-container .rating-score {
    font-weight: 700;
    color: var(--gray-900);
}

.hm-app-container .rating-stars {
    color: #f59e0b;
    font-size: 16px;
}

.hm-app-container .rating-count {
    color: var(--gray-500);
    font-size: 14px;
}

.hm-app-container .rating-info-icon {
    color: var(--gray-400);
    margin-left: 2px;
}

/* ---------- Custom Marker Styles ---------- */
.custom-marker {
    position: relative;
}

.marker-pin {
    width: 30px;
    height: 38px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25));
    transition: transform var(--transition-fast);
}

.marker-pin:hover {
    transform: scale(1.15);
}

.marker-pin svg {
    width: 30px;
    height: 38px;
}

.marker-pin--active {
    animation: markerBounce 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes markerBounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-14px); }
    50% { transform: translateY(-2px); }
    70% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* Marker pulse ring for active */
.marker-pulse {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: rgba(220, 38, 38, 0.25);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateX(-50%) scale(3);
        opacity: 0;
    }
}

/* ---------- Geolocation Toast ---------- */
.geo-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.geo-toast.show {
    transform: translateX(-50%) translateY(0);
}

.geo-toast--success {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
}

.geo-toast--error {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

/* ---------- Loading Spinner ---------- */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 6px;
    vertical-align: middle;
}

.btn-directions {
  color: #fff !important;
}

.hm-info-link-directions svg {
  color: #fff;
}

/* ---------- User Location Marker (Tìm gần nhất) ---------- */
.hm-user-marker {
    position: relative;
    width: 22px;
    height: 22px;
}

.hm-user-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    background: #2563eb;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5), 0 2px 6px rgba(0,0,0,0.25);
    z-index: 2;
}

.hm-user-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.35);
    animation: hm-user-pulse 1.8s ease-out infinite;
    z-index: 1;
}

@keyframes hm-user-pulse {
    0%   { transform: scale(0.6); opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
}


@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Responsive ---------- */
.hm-btn-view-toggle {
    display: none;
}

@media (max-width: 900px) {
    body {
        padding: 0;
        align-items: stretch;
    }

    .hm-app-container {
        flex-direction: column;
        height: var(--hm-height, 620px);
        border-radius: 0;
        max-width: none;
        position: relative;
    }

    /* Toggle visibility based on active view mode */
    .hm-app-container.hm-view-map .hm-sidebar {
        display: none !important;
    }
    .hm-app-container.hm-view-map .hm-map-area {
        display: block !important;
        height: 100% !important;
        width: 100% !important;
    }

    .hm-app-container.hm-view-list .hm-sidebar {
        display: flex !important;
        height: 100% !important;
        width: 100% !important;
        border-right: none;
        border-bottom: none;
    }
    .hm-app-container.hm-view-list .hm-map-area {
        display: none !important;
    }

    .hm-sidebar {
        width: 100%;
        min-width: unset;
        height: 100%;
    }

    .hm-map-area {
        width: 100%;
        height: 100%;
    }

    /* Hide the old station select dropdown wrapper on mobile */
    .hm-dropdown-wrapper {
        display: none !important;
    }

    /* Floating Toggle Button */
    .hm-btn-view-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        padding: 12px 22px;
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        color: var(--white);
        background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
        border: none;
        border-radius: var(--radius-full);
        box-shadow: 0 4px 18px rgba(26, 106, 171, 0.4);
        cursor: pointer;
        transition: all var(--transition-base);
        white-space: nowrap;
        outline: none;
    }

    .hm-btn-view-toggle:active {
        transform: translateX(-50%) scale(0.95);
    }

    .hm-btn-view-toggle svg {
        flex-shrink: 0;
    }

    .hm-btn-view-toggle svg.hidden {
        display: none !important;
    }

    /* Bottom Docked Info Card on mobile */
    .hm-app-container .info-card {
        position: absolute;
        top: auto !important;
        bottom: 16px !important;
        left: 16px !important;
        right: 16px !important;
        max-width: none !important;
        min-width: unset !important;
        width: calc(100% - 32px) !important;
        margin: 0 !important;
        border-radius: var(--radius-lg) !important;
        box-shadow: var(--shadow-lg) !important;
        background: var(--white) !important;
        border: 1px solid var(--gray-200) !important;
        padding: 14px 16px !important;
        z-index: 1000 !important;
    }
}

@media (max-width: 480px) {
    .hm-sidebar-header {
        padding: 12px 14px 8px;
        flex-wrap: nowrap;
    }

    .hm-sidebar-title {
        font-size: 18px;
    }

    .hm-btn-find-nearest {
        padding: 6px 12px;
        font-size: 13px;
    }

    .hm-app-container .station-card {
        padding: 10px;
        gap: 8px;
        margin-bottom: 6px;
    }

    .hm-app-container .station-card__img {
        width: 60px;
        height: 48px;
        border-radius: var(--radius-sm);
    }

    .hm-app-container .station-card__name {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .hm-app-container .station-card__address {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .hm-app-container .station-card__actions {
        gap: 6px;
    }

    .btn-phone,
    .btn-website,
    .btn-directions {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* Overrides for NukeViet Wrapper */
#contentmod { padding: 0 !important; }


/* ============================================
   v1.0.02 — Filter bar + type badges
   ============================================ */

.hm-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.hm-filter-bar--block { padding: 10px 12px; }
.hm-filter-group { display: flex; flex-direction: column; gap: 4px; }
.hm-filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.hm-filter-control { position: relative; }
.hm-filter-input {
    width: 100%;
    padding: 9px 36px 9px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.hm-filter-input:focus {
    outline: none;
    border-color: #2078c4;
    box-shadow: 0 0 0 3px rgba(32, 120, 196, 0.15);
}
.hm-filter-clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: none;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    padding: 0;
}
.hm-filter-clear:hover { background: #cbd5e1; }

.hm-filter-actions {
    display: flex;
    gap: 8px;
}
.hm-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s, transform 0.05s;
}
.hm-btn:active { transform: translateY(1px); }
.hm-btn-primary { background: #2078c4; color: #fff; }
.hm-btn-primary:hover { background: #1864a3; }
.hm-btn-ghost { background: #fff; color: #475569; border-color: #cbd5e1; }
.hm-btn-ghost:hover { background: #f1f5f9; }

/* Suggest dropdown */
.hm-suggest {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1500;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    max-height: 280px;
    overflow-y: auto;
}
.hm-suggest__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 9px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
}
.hm-suggest__item:last-child { border-bottom: none; }
.hm-suggest__item:hover { background: #f1f5f9; }
.hm-suggest__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 10px;
    margin-top: 6px;
}
.hm-suggest__label { font-size: 14px; color: #1e293b; }
.hm-suggest__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.hm-suggest__name { font-size: 14px; color: #1e293b; font-weight: 600; }
.hm-suggest__meta { font-size: 11px; color: #64748b; margin-top: 1px; }
.hm-suggest__addr {
    flex-basis: 100%;
    font-size: 11px;
    color: #94a3b8;
    padding-left: 18px;
}
.hm-suggest__empty {
    padding: 12px;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}
.hm-suggest mark {
    background: #fef08a;
    color: inherit;
    padding: 0 1px;
    border-radius: 2px;
}

/* Type badges */
.station-card__type,
.info-type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    line-height: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
    background: #22a96e;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.info-type-badge { margin-right: 6px; }

.hm-empty-state {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Tooltip pin maker style overrides */
.leaflet-tooltip {
    font-size: 14px !important;
}


