body {
    margin: 0;
    padding: 0;
}

.search-container {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.venue-band-filters {
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: calc(4 * (14px * 1.4) + 20px + 6px); /* Updated for 3 inputs + 1 button */
}

.search-container input {
    width: 180px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
}

.search-container input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.15);
}

.band-autocomplete-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.band-autocomplete-wrapper input {
    width: 180px;
    box-sizing: border-box;
}

.autocomplete-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 1000;
    margin-top: 2px;
}

.autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s;
}

.autocomplete-item:hover,
.autocomplete-item.autocomplete-selected {
    background-color: #f5f5f5;
}

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

.autocomplete-item.autocomplete-more {
    color: #666;
    font-style: italic;
    cursor: default;
    background-color: #fafafa;
}

.autocomplete-item.autocomplete-more:hover {
    background-color: #fafafa;
}

.autocomplete-item.autocomplete-no-results {
    color: #999;
    font-style: italic;
    cursor: default;
}

.search-container select {
    width: 140px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    height: calc(4 * (14px * 1.4) + 20px + 6px); /* Match venue-band-filters height */
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reset-filters-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #333;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.reset-filters-btn:hover {
    background-color: #e8e8e8;
    border-color: #bbb;
}

.reset-filters-btn:active {
    background-color: #ddd;
}

.help-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s;
    padding: 0;
    margin: 0 auto;
}

.help-btn:hover {
    background-color: #e8e8e8;
    border-color: #bbb;
}

.help-btn:active {
    background-color: #ddd;
}

.search-container select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15);
}

.search-container select option {
    padding: 4px 8px;
}

.search-container select option:disabled {
    font-weight: bold;
    color: #333;
    background-color: #f5f5f5;
}

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

.venue-popup {
    max-height: 600px;
    overflow-y: auto;
    min-width: 400px;
    max-width: 500px;
}

.venue-popup h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.performance {
    margin: 5px 0;
}

.performances-list hr {
    margin: 8px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.band-link {
    text-decoration: none;
    color: #0066cc;
    cursor: pointer;
}

.band-link:hover {
    text-decoration: underline;
}

.band-star {
    color: #ffd700;
    font-size: 0.9em;
    margin-left: 4px;
    display: inline-block;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.side-panel h1 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.side-panel h2 {
    color: #666;
    font-size: 1.2em;
    margin: 15px 0 10px;
}

.side-panel.open {
    right: 0;
}

.close-button {
    position: sticky;
    top: 0;
    float: right;
    background: white;
    border: 1px solid #ddd;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    color: #666;
    transition: all 0.2s ease;
    z-index: 10;
    margin: -20px -20px 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.close-button:hover {
    background: #f5f5f5;
    color: #333;
}

#panel-content {
    clear: both;
}

.performance {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.performance:hover {
    background-color: #f8f8f8;
}

.performance .date {
    color: #333;
    font-weight: bold;
    margin-bottom: 4px;
}

.performance .venue-name {
    color: #666;
}

.venue-link {
    color: #0066cc;
    text-decoration: none;
}

.venue-link:hover {
    text-decoration: underline;
}

.members {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
}

.members h2 {
    margin-top: 0;
    color: #444;
    font-size: 1.2em;
}

.member {
    margin: 8px 0;
    color: #555;
    padding: 4px 0;
}

/* Make the scrollbar match the design */
.side-panel::-webkit-scrollbar {
    width: 8px;
}

/* Venue highlight circle styling - removed animation as it doesn't work well with Leaflet SVG */

.side-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.side-panel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.side-panel::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.date-group {
    margin: 20px 0 10px;
}

.date-heading {
    background-color: #f5f5f5;
    padding: 10px 12px;
    margin: 0;
    font-size: 1.1em;
    color: #444;
    border-bottom: 2px solid #ddd;
    font-weight: bold;
}

.date-group .performance:last-child {
    border-bottom: none;
}

.date-group + .date-group {
    margin-top: 25px;
}

/* Asset Carousel Styles */
.asset-carousel {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    visibility: visible;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f5f5f5;
    min-height: 50px;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: contain;
    background-color: #f5f5f5;
}

.image-tags {
    margin-top: 8px;
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
}

.image-notes {
    margin-top: 8px;
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: center;
}

.tags-label {
    font-weight: bold;
    margin-bottom: 4px;
    color: #666;
}

.image-tags .tag {
    display: inline-block;
    background-color: #e0e0e0;
    color: #333;
    padding: 2px 8px;
    margin: 2px 4px 2px 0;
    border-radius: 12px;
    font-size: 11px;
}

.original-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 11px;
}

.original-link:hover {
    text-decoration: underline;
}

.youtube-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.youtube-embed-container .youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vimeo-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.vimeo-embed-container .vimeo-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-embed-container .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Smaller placeholder when an image fails to load */
.carousel-slide img.is-placeholder {
    width: 56px;
    height: 56px;
    max-height: none;
    object-fit: contain;
    margin: 18px auto;
    background-color: transparent;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 5px 0;
}

.carousel-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.carousel-btn:hover {
    background-color: #0052a3;
}

.carousel-btn:active {
    background-color: #003d7a;
}

.carousel-indicator {
    font-size: 12px;
    color: #666;
    min-width: 50px;
    text-align: center;
}

/* Carousel in venue popup - smaller size */
.venue-popup .asset-carousel {
    margin-top: 8px;
    margin-bottom: 8px;
}

.venue-popup .carousel-slide img {
    max-height: 400px;
    max-width: 100%;
}

.venue-popup .youtube-embed-container {
    max-height: 400px;
}

.venue-popup .video-embed-container {
    max-height: 400px;
}

.venue-popup .vimeo-embed-container {
    max-height: 400px;
}


.venue-popup .carousel-btn {
    width: 25px;
    height: 25px;
    font-size: 16px;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #fff;
    text-decoration: none;
}

.modal-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    margin: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    color: white;
}

.modal-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.modal-btn:active {
    background-color: rgba(255, 255, 255, 0.4);
}

.modal-indicator {
    color: white;
    font-size: 16px;
    min-width: 80px;
    text-align: center;
}

.carousel-image {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.carousel-image:hover {
    opacity: 0.8;
}

/* Grouped venue marker styles */
.grouped-venue-marker {
    background: transparent !important;
    border: none !important;
}

.grouped-venue-item {
    margin-bottom: 10px;
}

.grouped-venue-item:first-child h4 {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Image error fallback styles */
.image-error-fallback {
    padding: 15px;
    text-align: center;
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.image-error-fallback a {
    color: #0066cc;
    text-decoration: none;
    word-break: break-all;
    max-width: 100%;
    padding: 8px;
    display: inline-block;
}

.image-error-fallback a:hover {
    text-decoration: underline;
}

.image-error-fallback div {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.image-error-fallback .image-error-text {
    color: #333;
    word-break: break-all;
    max-width: 100%;
    padding: 8px;
    font-size: 12px;
    display: inline-block;
    box-sizing: border-box;
}

/* Performance Notes Styles */
.performance-notes {
    margin-top: 8px;
}

.notes-toggle {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.notes-toggle:hover {
    color: #0066cc;
}

.notes-toggle-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.notes-toggle-text {
    font-weight: 500;
}

.notes-content {
    margin-top: 6px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-left: 3px solid #0066cc;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    word-wrap: break-word;
    text-align: left;
}

/* Performance Links Styles */
.performance-links {
    margin-top: 8px;
}

.links-toggle {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.links-toggle:hover {
    color: #0066cc;
}

.links-toggle-icon {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.links-toggle-text {
    font-weight: 500;
}

.links-content {
    margin-top: 6px;
    padding: 8px 12px;
    background-color: #f8f8f8;
    border-left: 3px solid #0066cc;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.links-content .link-item {
    color: #0066cc;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.links-content .link-item:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Help Modal Styles */
.help-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.help-modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.help-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.help-modal-close:hover,
.help-modal-close:focus {
    color: #333;
}

.help-modal-text {
    margin-top: 10px;
    line-height: 1.7;
    color: #333;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.help-modal-text p {
    margin: 0;
}

/* Override marker cluster colors to always be green */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
    background-color: #51cf66 !important;
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
    background-color: #51cf66 !important;
    color: #fff !important;
}

/* Bands List Page Styles */
.bands-page {
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.bands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.bands-header h1 {
    margin: 0;
    color: #333;
    font-size: 2em;
}

.nav-link {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.nav-link:hover {
    background-color: #0052a3;
}

.bands-container {
    max-width: 1200px;
    margin: 0 auto;
}

.loading, .error {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

.letter-group {
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.letter-header {
    width: 100%;
    padding: 15px 20px;
    background-color: #f8f8f8;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: background-color 0.2s;
    text-align: left;
}

.letter-header:hover {
    background-color: #eeeeee;
}

.letter-title {
    flex: 0 0 50px;
    font-size: 24px;
    color: #0066cc;
}

.letter-count {
    flex: 1;
    color: #666;
    font-weight: normal;
    font-size: 14px;
}

.letter-toggle {
    flex: 0 0 30px;
    text-align: right;
    color: #666;
    font-size: 12px;
}

.letter-bands {
    padding: 10px 0;
}

.band-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

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

.band-item:hover {
    background-color: #f8f8f8;
}

.band-name {
    color: #0066cc;
    font-size: 16px;
}

.band-item:hover .band-name {
    text-decoration: underline;
}

.band-star {
    color: #ffd700;
    font-size: 0.9em;
    margin-left: 4px;
    display: inline-block;
}

/* Map header navigation */
.map-header {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.local-acts-btn {
    width: 180px;
    padding: 8px 10px;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    text-align: center;
}

.local-acts-btn:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

.local-acts-btn:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.15);
}

.local-acts-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

.local-acts-btn.active:hover {
    background-color: #0052a3;
    border-color: #0052a3;
}

.local-acts-btn.active:focus {
    border-color: #0052a3;
    box-shadow: 0 0 0 2px rgba(0,82,163,0.15);
}

.map-header .nav-link {
    padding: 6px 12px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: background-color 0.2s;
    display: inline-block;
}

.map-header .nav-link:hover {
    background-color: #0052a3;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    /* Mobile filter toggle button */
    .mobile-filter-toggle {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 1002;
        background: white;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 12px 16px;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 44px;
    }
    
    .mobile-filter-toggle:hover {
        background-color: #f5f5f5;
    }
    
    /* Hide filter toggle when side panel is open - use JavaScript to handle this */
    
    /* Make search container collapsible on mobile */
    .search-container {
        flex-direction: column !important;
        align-items: stretch !important;
        width: calc(100vw - 20px) !important;
        max-width: 100% !important;
        padding: 12px !important;
        gap: 10px !important;
        position: fixed !important;
        top: 60px !important; /* Below toggle button */
        left: 10px !important;
        right: 10px !important;
        z-index: 1001 !important;
        max-height: calc(90vh - 70px) !important;
        overflow-y: auto !important;
        display: none !important; /* Hidden by default on mobile */
    }
    
    .search-container.mobile-open {
        display: flex !important;
    }
    
    .venue-band-filters {
        width: 100%;
        height: auto;
    }
    
    .search-container input,
    .band-autocomplete-wrapper input,
    .local-acts-btn {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        min-height: 44px; /* Better touch target */
    }
    
    .search-container select {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        min-height: 44px; /* Better touch target */
        height: auto;
    }
    
    /* Action buttons side by side on mobile */
    .action-buttons {
        flex-direction: row;
        width: 100%;
        gap: 8px;
    }
    
    .reset-filters-btn {
        flex: 1;
        min-height: 44px; /* Better touch target */
        font-size: 16px;
    }
    
    .help-btn {
        width: 44px; /* Keep it round */
        height: 44px; /* Keep it round */
        min-width: 44px; /* Keep it round */
        min-height: 44px; /* Keep it round */
        flex-shrink: 0; /* Don't shrink */
        font-size: 18px;
    }
    
    /* Adjust side panel for mobile */
    .side-panel {
        width: 100vw;
        right: -100vw;
    }
    
    .side-panel.open {
        right: 0;
    }
    
    /* Adjust map header for mobile */
    .map-header {
        bottom: 10px;
        left: 10px;
        right: auto;
        width: auto;
    }
    
    .map-header .nav-link {
        width: auto;
        text-align: left;
        padding: 12px 16px;
        font-size: 16px;
        white-space: nowrap;
    }
    
    /* Make autocomplete results full width on mobile */
    .autocomplete-results {
        left: 0;
        right: 0;
        max-height: 200px;
    }
}