/* Complete Google Maps Styling */
/* Dark theme, interactive controls, overlays, and responsive design */

/* ============================================
   MAP CONTAINER
   ============================================ */

#map {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.map-container {
    position: relative;
    margin: 40px 0;
}

/* ============================================
   ENHANCED MAP CONTAINER
   ============================================ */

.explore-map-enhanced {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #1a1a1a;
}

.map-container-enhanced {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ENHANCED MAP CONTROLS OVERLAY
   ============================================ */

.map-controls-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-controls-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.map-control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
    overflow: hidden;
}

.map-control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.map-control-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: scale(1.05);
}

.map-control-btn:hover::before {
    width: 100%;
    height: 100%;
}

.map-control-btn:active {
    transform: scale(0.95);
}

.map-control-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #D4AF37;
}

/* ============================================
   MAP LEGEND
   ============================================ */

.map-legend {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.map-legend.collapsed {
    transform: translateX(-90%);
}

.map-legend h4 {
    color: #ffffff;
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.legend-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-marker.restaurant {
    background: #D4AF37;
    border: 2px solid #ffffff;
}

.legend-marker.bar {
    background: #3b82f6;
    border: 2px solid #ffffff;
}

.legend-marker.event {
    background: #ef4444;
    border: 2px solid #ffffff;
}

.legend-marker.saved {
    background: #22c55e;
    border: 2px solid #ffffff;
}

.legend-marker.friends {
    background: #a855f7;
    border: 2px solid #ffffff;
}

.legend-marker.trending {
    background: #f97316;
    border: 2px solid #ffffff;
}

.legend-marker.trending::after {
    content: '🔥';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
}

.legend-item span {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #D4AF37;
    border-color: #D4AF37;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ============================================
   MAP INFO PANEL
   ============================================ */

.map-info-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-info-panel.visible {
    transform: translateY(0);
}

.info-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.info-panel-header h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
}

.panel-close {
    background: transparent;
    border: none;
    color: #808080;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.panel-close:hover {
    color: #ef4444;
}

.info-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-stat:last-child {
    border-bottom: none;
}

.info-label {
    color: #808080;
    font-size: 0.85rem;
}

.info-value {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   MAP PLACEHOLDER ENHANCEMENTS
   ============================================ */

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #808080;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #D4AF37;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   SIMULATED MAP STYLING
   ============================================ */

.map-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.simulated-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

.map-marker {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.map-marker::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid currentColor;
    z-index: -1;
}

.map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.map-marker.restaurant {
    background: #D4AF37;
    color: #D4AF37;
}

.map-marker.bar {
    background: #3b82f6;
    color: #3b82f6;
}

.map-marker.event {
    background: #ef4444;
    color: #ef4444;
}

.map-marker.saved {
    background: #22c55e;
    color: #22c55e;
}

.map-marker.friends {
    background: #a855f7;
    color: #a855f7;
}

.map-marker.trending {
    background: #f97316;
    color: #f97316;
    position: relative;
}

.map-marker.trending::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #f97316;
    border-radius: 50%;
    z-index: 2;
    animation: pulse 2s infinite;
}

.map-marker.trending::after {
    content: '🔥';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: none;
    border-radius: 0;
}

.map-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    pointer-events: none;
}

.map-overlay-text i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #D4AF37;
    opacity: 0.8;
}

.map-overlay-text p {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.map-overlay-text small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Map Notification Styles */
.map-notification {
    font-family: inherit;
    font-size: 0.9rem;
    border-left: 4px solid currentColor;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .map-controls-overlay {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .map-controls-group {
        padding: 4px;
    }
    
    .map-control-btn {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .map-legend {
        top: 10px;
        left: 10px;
        padding: 16px;
        min-width: 200px;
        max-width: 240px;
    }
    
    .map-legend.collapsed {
        transform: translateX(-95%);
    }
    
    .map-info-panel {
        bottom: 10px;
        left: 10px;
        right: 10px;
        min-width: auto;
    }
    
    .legend-marker {
        width: 20px;
        height: 20px;
    }
}

.map-control-btn {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.map-control-btn:hover {
    background: #2a2a2a;
    border-color: #D4AF37;
    color: #D4AF37;
}

.map-control-btn i {
    font-size: 18px;
}

/* ============================================
   MAP VIEW SWITCHER
   ============================================ */

.map-view-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    gap: 8px;
}

.map-view-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.map-view-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.map-view-btn.active {
    background: #D4AF37;
    color: #0a0a0a;
}

/* ============================================
   MAP LEGEND
   ============================================ */

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 250px;
}

.map-legend h4 {
    margin: 0 0 12px 0;
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #b0b0b0;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ============================================
   INFO WINDOW STYLING
   ============================================ */

.map-info-window {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    min-width: 250px;
    max-width: 300px;
}

.gm-style .gm-style-iw-c {
    background: #1a1a1a !important;
    border-radius: 12px !important;
    padding: 16px !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style .gm-style-iw-t::after {
    background: #1a1a1a !important;
}

/* ============================================
   VENUE LIST SIDEBAR
   ============================================ */

#venueListContainer {
    position: absolute;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: #1a1a1a;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    transition: right 0.3s ease;
    overflow-y: auto;
}

#venueListContainer.active {
    right: 0;
}

.venue-list-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #1a1a1a;
    z-index: 10;
}

.venue-list-header h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #ffffff;
}

.venue-list-header button {
    background: none;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.venue-list-header button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.venue-list-items {
    padding: 12px;
}

.venue-list-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.venue-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-4px);
}

.venue-list-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.venue-list-info {
    flex: 1;
}

.venue-list-info h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #ffffff;
}

.venue-list-meta {
    display: flex;
    gap: 12px;
    font-size: 0.875rem;
    color: #b0b0b0;
}

/* ============================================
   MAP NOTIFICATIONS
   ============================================ */

.map-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    border-left: 4px solid #D4AF37;
}

.map-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.map-notification-success {
    border-left-color: #4CAF50;
}

.map-notification-error {
    border-left-color: #f44336;
}

.map-notification-info {
    border-left-color: #2196F3;
}

/* ============================================
   LOADING STATE
   ============================================ */

.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.map-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ============================================
   SEARCH BOX ON MAP
   ============================================ */

.map-search-box {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 400px;
    max-width: calc(100% - 40px);
}

.map-search-input {
    width: 100%;
    padding: 14px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
}

.map-search-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ============================================
   FILTER CHIPS ON MAP
   ============================================ */

.map-filters {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100% - 40px);
}

.map-filter-chip {
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #b0b0b0;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.map-filter-chip:hover {
    background: #2a2a2a;
    border-color: #D4AF37;
    color: #D4AF37;
}

.map-filter-chip.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0a0a0a;
}

/* ============================================
   ROUTE PANEL
   ============================================ */

.route-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 300px;
    display: none;
}

.route-panel.active {
    display: block;
}

.route-panel h4 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: #ffffff;
}

.route-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.route-info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #b0b0b0;
}

.route-info-item strong {
    color: #D4AF37;
}

.route-actions {
    display: flex;
    gap: 8px;
}

.route-actions button {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.route-actions .btn-primary {
    background: #D4AF37;
    color: #0a0a0a;
}

.route-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* ============================================
   FRIEND OVERLAY
   ============================================ */

.friend-overlay {
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 10;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 250px;
}

.friend-overlay h4 {
    margin: 0 0 12px 0;
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.friend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.friend-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.friend-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    position: relative;
}

.friend-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
}

.friend-info {
    flex: 1;
}

.friend-name {
    font-size: 0.875rem;
    color: #ffffff;
    margin: 0;
}

.friend-status {
    font-size: 0.75rem;
    color: #b0b0b0;
    margin: 2px 0 0 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .map-view-switcher {
        flex-wrap: wrap;
        max-width: 300px;
    }
    
    .map-legend {
        max-width: 200px;
    }
    
    #venueListContainer {
        width: 300px;
    }
}

@media (max-width: 768px) {
    #map {
        height: 400px;
        border-radius: 8px;
    }
    
    .map-controls-overlay {
        top: 10px;
        left: 10px;
        gap: 8px;
    }
    
    .map-control-btn {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .map-view-switcher {
        top: 10px;
        right: 10px;
        padding: 6px;
        gap: 6px;
    }
    
    .map-view-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .map-legend {
        bottom: 10px;
        left: 10px;
        padding: 12px;
        max-width: 180px;
    }
    
    .map-search-box {
        width: calc(100% - 20px);
        top: 10px;
    }
    
    .map-filters {
        top: 60px;
        gap: 6px;
    }
    
    .map-filter-chip {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    #venueListContainer {
        width: 100%;
        right: -100%;
    }
    
    .friend-overlay {
        display: none;
    }
    
    .route-panel {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* ============================================
   DARK MODE ENHANCEMENTS
   ============================================ */

.gm-style {
    font-family: inherit !important;
}

.gm-style-iw {
    background: #1a1a1a !important;
}

.gm-style-iw button {
    background: transparent !important;
    color: #ffffff !important;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.map-control-btn:focus,
.map-view-btn:focus,
.map-filter-chip:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .map-controls-overlay,
    .map-view-switcher,
    .map-legend,
    #venueListContainer,
    .map-notification {
        display: none !important;
    }
    
    #map {
        height: 500px;
        page-break-inside: avoid;
    }
}