/* ===== basket-mode.css ===== */
/* Fullscreen map mode with sidebars */

/* Container: fills viewport below topbar */
.basket-mode {
    position: fixed;
    top: 75px;
    /* Below fixed topbar */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    background: #f5f5f5;
}

/* Fullscreen Map */
.basket-mode-map {
    position: absolute;
    top: 0;
    left: 280px;
    /* Space for left sidebar */
    right: 300px;
    /* Space for right sidebar */
    bottom: 0;
    z-index: 1;
}

/* Mapbox adds `mapboxgl-map` on the same container and sets position:relative.
   Keep basket-mode map pinned to full viewport area. */
.basket-mode .basket-mode-map.mapboxgl-map {
    position: absolute;
    top: 0;
    bottom: 0;
}

/* ===== Left Sidebar: Search ===== */
.search-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    /* Widened from 280px */
    height: 100%;
    background: rgba(224, 238, 255, 0.78);
    color: #173b63;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: visible;
    /* Changed from hidden to show toggle button */
    transition: transform 0.3s ease;
}

.search-sidebar.collapsed {
    transform: translateX(-360px);
}

.sidebar-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.sidebar-header-row h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
}

.sidebar-icon {
    font-size: 18px;
}

/* Category Chips */
.category-chips {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    flex-wrap: wrap;
}

.cat-chip {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    background: rgba(255, 255, 255, 0.68);
    color: #1e3a8a;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}

.cat-chip:hover {
    background: #dbeafe;
}

.cat-chip.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

/* Sub-filters */
.sub-filters {
    display: flex;
    gap: 6px;
    padding: 0 16px 12px;
    flex-wrap: wrap;
}

.sub-chip {
    padding: 6px 10px;
    border-radius: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}

.sub-chip:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sub-chip.active {
    background: #3b82f6;
    color: #fff;
}

/* Search Input */
.search-input-wrap {
    padding: 0 16px 12px;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.search-input-wrap input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    color: #0f172a;
}

@media (max-width: 1023px) {
    .basket-mode .search-input-wrap input,
    .basket-mode input[type="text"],
    .basket-mode input[type="search"],
    .basket-mode textarea {
        font-size: 16px !important;
    }
}

.search-input-wrap input::placeholder {
    color: #888;
}

/* Results List */
.search-results-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0 calc(var(--basket-results-bottom-gap, 0px) + env(safe-area-inset-bottom, 0px)) 0;
    transition: padding-bottom 0.2s ease;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.14);
    cursor: pointer;
    transition: background 0.1s;
    gap: 12px;
    /* Gap between thumb and text */
    max-width: 100%;
    overflow-x: hidden;
}

/* New Result Thumb */
.result-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.move-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 8px;
    /* Tiny */
    color: #bbb;
    /* Subtle gray */
    padding: 0;
    line-height: 1;
    /* Reset line-height */
    /* Condensed height */
    transform: scaleX(1.1);
    /* Flattened appearance removed vertical scale to manage height directly */
    margin: 0;
    width: 12px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285F4;
    /* Signature Blue */
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s, background-color 0.2s;
}

.move-btn:hover {
    color: #3367d6;
    /* Darker Blue */
    background-color: rgba(66, 133, 244, 0.1);
    border-radius: 2px;
    opacity: 1;
}

.result-item:hover {
    background: rgba(37, 99, 235, 0.08);
}

.result-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.result-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #0f172a;
    text-align: left;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.result-desc {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.72);
    margin-bottom: 6px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.result-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.result-tag {
    font-size: 10px;
    background: rgba(37, 99, 235, 0.14);
    color: #1e3a8a;
    padding: 2px 6px;
    border-radius: 4px;
}

.result-action-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 52px;
    flex-shrink: 0;
}

.suggest-add-btn.result-action-stack {
    padding-right: 10px;
}

.result-add-btn {
    background: none;
    border: 1px solid rgba(37, 99, 235, 0.45);
    color: #1d4ed8;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-add-btn:hover {
    background: rgba(37, 99, 235, 0.12);
}

.result-info-btn {
    border: 1px solid rgba(37, 99, 235, 0.45);
    background: none;
    color: #1d4ed8;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    width: 28px;
    height: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.result-info-btn:hover {
    background: rgba(37, 99, 235, 0.12);
}

.mapbox-fallback-cta {
    padding: 16px;
    border-top: 1px dashed rgba(37, 99, 235, 0.25);
    text-align: center;
}

.mapbox-fallback-btn {
    width: 100%;
    background: rgba(66, 133, 244, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.35);
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
}

.mapbox-fallback-btn:hover {
    background: rgba(66, 133, 244, 0.18);
}

.mapbox-fallback-sub {
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}

/* Floating Complete Button */
.floating-complete-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #4285F4;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, bottom 0.3s ease;
}

.floating-complete-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
}

.floating-complete-btn:active {
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1023px) {
    .floating-complete-btn.drawer-expanded {
        bottom: calc(var(--drawer-offset, 0px) + 24px);
    }
}

/* ===== Right Sidebar: Basket Panel ===== */
.basket-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 10;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: visible;
}

.basket-panel.collapsed {
    transform: translateX(300px);
}

.basket-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.basket-panel-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    flex: 1;
}

.basket-icon {
    font-size: 18px;
}

.badge {
    background: #3b82f6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.basket-panel-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

/* Sidebar Toggle Buttons */
/* Sidebar Toggle Buttons */
.sidebar-toggle-btn {
    position: absolute;
    top: 50%;
    width: 24px;
    /* Slightly wider */
    height: 60px;
    /* Taller */
    background-color: #4285F4;
    /* Signature Blue */
    border: 1px solid #1a73e8;
    border-radius: 0 8px 8px 0;
    /* More rounded */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Ensure it's above everything */
    font-size: 14px;
    /* Larger arrow */
    color: #fff;
    /* White arrow */
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    transition: left 0.3s ease, right 0.3s ease, background 0.2s;
    /* No top/transform transition */
}

.sidebar-toggle-btn:hover {
    background-color: #3367d6;
    /* Darker blue on hover */
}

.sidebar-toggle-btn:active {
    transform: translateY(-50%);
    /* Prevent global button:active jump */
}

/* Left Toggle */
.sidebar-toggle-btn.left-toggle {
    right: -20px;
    /* Stick out from the sidebar */
}

/* Right Toggle */
.sidebar-toggle-btn.right-toggle {
    left: -20px;
    /* Stick out from the sidebar */
    border-radius: 4px 0 0 4px;
    /* Flip radius */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

/* Collapsed Toggle Button Position fix (optional, if we want them to stay visible) */
/* Actually, since they are children of the sidebar, they move with it. 
   So when left sidebar moves -280px, the button at right:-20px moves to -300px + screen left? 
   No, wait.
   Left Sidebar: 
     - Expanded: left:0. Button at right:-20px. Visible at x=280.
     - Collapsed: translateX(-280px). Visible part (at x=280) moves to x=0. 
       So the button will be exactly at the left edge of screen. Perfect.
   
   Right Sidebar:
     - Expanded: right:0. Button at left:-20px. Visible at screenRight-300.
     - Collapsed: translateX(300px). Button moves to screenRight.
       So key is to visualize properly.
       
   Let's verify logic:
   - Left Sidebar width 280. Button right -20.
   - Collapsed: translate X -280. 
   - Button new pos: 280 (container width) + (-20) (button offset) - 280 (translation) = -20??
   - Wait. relative to viewport?
   - Sidebar is `left: 0`.
   - Button is `absolute` inside `relative` sidebar? No, sidebar is `absolute`.
   - Inside sidebar: `right: -20px` means it is at x=300 (relative to sidebar left).
   - Sidebar moves -280px.
   - Button moves to x=20 relative to viewport left.
   - Wait, 280 width. Right edge is 280. `right: -20px` means x=300.
   - Translate -280 -> Button x = 20. Visible.
   
   Right Sidebar:
   - Width 300. `left: -20px` means x=-20 relative to sidebar left (which is at viewportRight-300).
   - Global x = (W-300) - 20 = W-320.
   - Collapsed: translate X 300.
   - Global x = W-320 + 300 = W-20. Visible.
   
   Actually, `left-toggle` arrow should point Left when expanded (to collapse) and Right when collapsed (to expand).
   Need to toggle arrow text in JS or use classes.
*/

/* Adjust Map when Sidebars collapsed */
.basket-mode-map {
    transition: left 0.3s ease, right 0.3s ease;
}

/* We need JS to add classes to BODY or Container to adjust map? 
   Or we can use sibling selectors if map is sibling.
   HTML structure: map, left sidebar, right sidebar.
   Map is BEFORE sidebars. Sibling selector won't work for Map affecting by Sidebar classes if Sidebar is after.
   
   Actually, `basket-mode-map` has `left: 280px` and `right: 300px`.
   When sidebars collapse, we should change these to 0.
   But we can't detect sidebar class change in CSS for a previous sibling.
   
   Solution: Add classes to the `basket-mode` container or handle map resize in JS.
   Adding classes to container is cleaner.
   `.basket-mode.left-collapsed .basket-mode-map { left: 0; }`
   `.basket-mode.right-collapsed .basket-mode-map { right: 0; }`
*/

/* ===== Bottom Drawer (Mobile) ===== */
.basket-drawer {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 100;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.drawer-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    /* Increased from 14px 20px */
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.drawer-toggle .chevron {
    margin-left: auto;
    transition: transform 0.2s;
    font-size: 24px;
    /* Increased from 10px default */
    color: #4285F4;
    /* Highlight color */
}

.basket-drawer.expanded .drawer-toggle .chevron {
    transform: rotate(180deg);
}

.drawer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.basket-drawer.expanded .drawer-content {
    max-height: 45.5vh;
    overflow-y: auto;
    padding: 12px 16px;
}

/* ===== Exit Button ===== */
.exit-basket-btn {
    display: none !important;
    /* User requested to remove this */
    position: absolute;
    top: 16px;
    left: 380px;
    /* Moved right to avoid sidebar overlap (360px + gap) */
    /* After left sidebar */
    z-index: 20;
    background: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.exit-basket-btn:hover {
    background: #f5f5f5;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1023px) {
    .basket-mode-map {
        right: 0;
        /* No right sidebar */
    }

    .basket-panel {
        display: none;
        /* Use drawer instead */
    }

    .basket-drawer {
        display: block;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .basket-mode .map-route-label-overlay {
        display: none !important;
    }

    .search-sidebar {
        width: 100%;
        z-index: 50;
    }

    .basket-mode-map {
        left: 0;
        right: 0;
        z-index: 1;
    }

    .exit-basket-btn {
        left: 16px;
        top: 16px;
        /* Fixed to top-left */
        bottom: auto;
        z-index: 60;
        /* Higher than sidebar (50) */
    }

    /* Search sidebar becomes overlay */
    .search-sidebar {
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        /* Remove right:0 to allow width to take effect */
        bottom: 60px;
        /* Leave space for drawer toggle */
        width: 88%;
        /* Adjusted to leave space for map */
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
        /* Add depth */
        transition: transform 0.3s ease;
    }

    .search-sidebar.collapsed {
        transform: translateX(-100%);
    }

    /* Fix Toggle Button on Mobile: Adjust for overlay usage */
    /* Keep left toggle near search input edge on mobile */
    .sidebar-toggle-btn.left-toggle {
        right: 0 !important;
        width: 28px;
        height: 40px;
        border-radius: 8px 0 0 8px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    }

    /* When collapsed, sidebar is offscreen left. Button needs to stick out to right. */
    .search-sidebar.collapsed .sidebar-toggle-btn.left-toggle {
        right: -24px !important;
        /* -30px에서 -24px로 변경하여 갭 제거 (버튼 width 24px) */
        border-radius: 0 8px 8px 0;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    }

    /* Force Map to stay full width on mobile, ignoring JS inline styles */
    .basket-mode-map {
        left: 0 !important;
        right: 0 !important;
        width: 100%;
    }

    /* Move Complete Button up to avoid overlap with Bottom Drawer */
    .floating-complete-btn {
        bottom: 90px;
        z-index: 1001;
        /* Ensure it stays on top */
    }
}

/* ===== Sidebar Cards ===== */
.sidebar-day-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.2s;
}

.sidebar-day-card.targeting-day {
    border: 2px solid #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.28);
}

.sidebar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fdfdfd;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: background 0.2s;
}

.sidebar-day-card.expanded .sidebar-card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-label {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.date-label {
    font-size: 13px;
    color: #888;
}

.chevron {
    font-size: 10px;
    color: #999;
    transition: transform 0.2s;
}

.sidebar-day-card.expanded .chevron {
    transform: rotate(180deg);
}

.sidebar-card-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s;
}

.sidebar-day-card.expanded .sidebar-card-body {
    max-height: 1000px;
    /* Arbitrary large height */
    opacity: 1;
    padding: 12px;
}

/* Stay Info */
.sidebar-stay-info {
    margin-bottom: 12px;
    padding: 10px;
    background: #f0f7ff;
    border-radius: 6px;
    border: 1px dashed #cfe0f5;
}

.stay-badge {
    display: inline-block;
    background: #4285F4;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 4px;
}

.stay-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 2px;
}

.stay-addr {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Spots List */
.sidebar-spots-list {
    margin-bottom: 12px;
}

.list-header {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-spot-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 28px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-spot-item:last-child {
    border-bottom: none;
}

.spot-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.spot-idx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: #f0f0f0;
    color: #666;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 600;
    flex-shrink: 0;
}

.spot-name {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delete-spot {
    /* Styles handled inline mainly, but reset hered */
    border-radius: 4px;
    border: none;
    background: transparent;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, background 0.15s;
}

.delete-spot:hover {
    color: #ff4d4f;
    background: #fff1f0;
}

.empty-spots {
    padding: 10px;
    text-align: center;
    color: #aaa;
    font-size: 12px;
    background: #f9f9f9;
    border-radius: 6px;
}

/* Actions */
.sidebar-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    padding: 8px;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.15s;
    border: 1px solid #e0e0e0;
}

.add-schedule-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
    padding: 5px 10px;
    min-height: 28px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
}

.add-schedule-btn:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #ccc;
}

.add-limit-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.2;
    padding: 5px 10px;
    min-height: 28px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #c2410c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    flex-shrink: 0;
}

.sidebar-day-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.sidebar-day-top-row>.add-schedule-btn,
.sidebar-day-top-row>.add-limit-label {
    margin-left: auto;
}

.sidebar-day-meta-wrap {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
    flex: 1 1 auto;
}

.sidebar-day-title-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar-day-title {
    font-weight: 700;
    color: #4285F4;
    line-height: 1.2;
}

.day-date-sub-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.35;
    padding-top: 1px;
    white-space: nowrap;
}

.optimized-badge {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1.2;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 9999px;
    background: #34A853;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.view-route-btn {
    background: #e6f7ff;
    color: #0088cc;
    border: 1px solid #bae7ff;
}

.view-route-btn:hover {
    background: #bae7ff;
    color: #0060aa;
}

/* Sidebar Attribution */
.sidebar-attribution {
    font-size: 10px;
    color: #475569;
    text-align: center;
    padding: 12px 16px;
    margin-top: auto;
    line-height: 1.5;
    border-top: 1px solid rgba(37, 99, 235, 0.16);
    background: rgba(255, 255, 255, 0.48);
}
