/**
 * Fiber Optic Networks Manager - Interactive Mapping System - Responsive Design Styles (ALL BREAKPOINTS)
 * 
 * @description Comprehensive responsive CSS styles for the VS infrastructure mapping application
 * @version 2025.11.08
 * @author Savin Ionut Razvan
 * 
 * @license Copyright (c) 2025 Savin Ionut Razvan. All rights reserved.
 * 
 * Features:
 * - Desktop responsive styles (min-width: 601px)
 * - Tablet responsive styles (max-width: 600px)
 * - Mobile responsive styles (max-width: 480px)
 * - High DPI display support for retina screens
 * - Print-friendly styles for map printing
 * - Touch device optimizations
 * - All responsive breakpoints consolidated in one file
 */

/* Global: hide hamburger button whenever the side menu is open (prevents overlap) */
#controls.open ~ #hamburger-btn {
    display: none !important;
    visibility: hidden !important;
}

/* ==========================================================================
   GROUP 1: DESKTOP RESPONSIVE STYLES (min-width: 601px)
   ========================================================================== */

/* Used in: index.html - Desktop hamburger menu and controls behavior */
/* Purpose: Desktop-specific hamburger menu and controls behavior */
@media (min-width: 601px) {
    /* Used in: index.html - Desktop hamburger button */
    /* Purpose: Hamburger button visible by default on desktop */
    #hamburger-btn {
        display: flex !important;
        visibility: visible !important;
        position: fixed !important;
        z-index: 1201 !important;
    }
    
    /* Used in: index.html - Desktop close button */
    /* Purpose: Hide close button on desktop */
    #closemenu-btn {
        display: none !important;
    }
    
    /* Used in: index.html - Desktop controls panel */
    /* Purpose: Desktop controls start closed */
    #controls {
        left: -280px !important;
    }
    
    /* Used in: index.html - Desktop backdrop */
    /* Purpose: Hide backdrop on desktop */
    .controls-backdrop {
        display: none !important;
    }
    
    /* REMOVED: Desktop search button positioning - conflicts with components.css */
    
    /* REMOVED: Desktop search panel styles - conflicts with components.css */
    
    /* Align right-side Leaflet controls with search button column */
    .leaflet-top.leaflet-right {
        top: 1rem;     /* align with search button top */
        right: 1rem;   /* align with search button right */
    }
    .leaflet-right .leaflet-control {
        margin-right: 0;
    }

    /* Nudge the zoom group slightly below the search button for visual balance */
    .leaflet-top.leaflet-right .leaflet-control-zoom {
        margin-top: 0.5rem; /* search is 2.5rem; this gives a small gap */
    }

    /* Force Case selector dropdown to stack underneath the checkbox on desktop */
    .checkbox-item.case-selector {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 6px !important;
    }
    .checkbox-item.case-selector > label.checkbox-item {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }
    .checkbox-item.case-selector > .case-file-selector {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 6px !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Desktop file selector dropdown - optimized */
    .search-panel .file-selector-dropdown,
    .unified-search-container .file-selector-dropdown {
        max-height: 28rem !important; /* Increased to see more files */
        margin: 0.5rem 1rem !important; /* Ensure margin is maintained */
    }
    
    /* Desktop file selector item - compact but visible */
    .search-panel .file-selector-item,
    .unified-search-container .file-selector-item {
        min-height: 2.75rem !important; /* Compact height to see more files */
        padding: 0.4rem 0.5rem !important; /* Reduced padding for compact design */
        margin: 0 !important; /* Remove margins */
        gap: 0.4rem !important; /* Compact gap */
        display: flex !important;
        align-items: center !important;
        border-bottom: 1px solid #374151 !important; /* Ensure border is maintained */
    }
    
    /* Desktop file selector item label - compact */
    .search-panel .file-selector-item label,
    .unified-search-container .file-selector-item label {
        gap: 0.1rem !important; /* Minimal gap between text elements */
        margin: 0 !important;
        padding: 0 !important;
        flex: 1 !important;
    }
    
    /* Desktop file selector item text - smaller fonts */
    .search-panel .file-selector-item .file-name,
    .unified-search-container .file-selector-item .file-name {
        font-size: 0.7rem !important; /* Smaller font */
        line-height: 1.15 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .search-panel .file-selector-item .file-info,
    .unified-search-container .file-selector-item .file-info {
        font-size: 0.6rem !important; /* Smaller font */
        line-height: 1.15 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .search-panel .file-selector-item .file-description,
    .unified-search-container .file-selector-item .file-description {
        font-size: 0.55rem !important; /* Smaller font */
        line-height: 1.15 !important;
        margin: 0 !important;
        margin-top: 0.1rem !important;
        padding: 0 !important;
    }
    
    /* Desktop file selector item checkbox - smaller */
    .search-panel .file-selector-item input[type="checkbox"],
    .unified-search-container .file-selector-item input[type="checkbox"] {
        width: 12px !important;
        height: 12px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Desktop select buttons - smaller and compact */
    .search-panel .select-buttons,
    .unified-search-container .select-buttons {
        padding: 0.3rem 0.5rem !important; /* Reduced padding */
        margin: 0 !important;
        margin-top: 0.25rem !important;
        gap: 0.3rem !important; /* Reduced gap */
        border-top: 1px solid #374151 !important;
    }
    
    .search-panel .select-all-btn,
    .search-panel .select-none-btn,
    .unified-search-container .select-all-btn,
    .unified-search-container .select-none-btn {
        padding: 0.3rem 0.5rem !important; /* Smaller buttons */
        font-size: 0.65rem !important; /* Smaller font */
        min-height: 1.4rem !important; /* Smaller height */
        border-radius: 0.375rem !important;
        margin: 0 !important;
    }
}

/* ==========================================================================
   GROUP 2: TABLET & MOBILE RESPONSIVE STYLES (max-width: 600px)
   ========================================================================== */

/* Used in: index.html - Tablet and mobile responsive styles */
/* Purpose: Tablet and mobile-specific responsive behavior */
@media (max-width: 600px) {
    /* iOS Safari Dynamic Viewport Height Fix */
    /* Purpose: Fix viewport height issues on iOS Safari */
    .unified-search-container {
        height: calc(var(--vh, 1vh) * 100) !important;
        max-height: calc(var(--vh, 1vh) * 100) !important;
    }
    
    .search-panel {
        height: calc(var(--vh, 1vh) * 100) !important;
        max-height: calc(var(--vh, 1vh) * 100) !important;
    }
    
    .search-panel.open {
        height: calc(var(--vh, 1vh) * 100) !important;
        max-height: calc(var(--vh, 1vh) * 100) !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search container visibility */
    /* Purpose: Hide hamburger and controls when search is open */
    .unified-search-container.open ~ #hamburger-btn,
    .unified-search-container.open ~ #controls {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Hide search button when menu is open (prevents overlap with close button) */
    #controls.open ~ .unified-search-container {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search backdrop */
    /* Purpose: Mobile search backdrop overlay - only when panel is actually open and visible */
    .unified-search-container.open .search-panel::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: calc(100dvh - var(--footer-h, 0px));
        background: rgba(0, 0, 0, 0.5);
        z-index: 1201; /* below panel but above map */
        pointer-events: auto;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search panel */
    /* Purpose: Mobile search panel styling with fullscreen slide-up animation */
    .search-panel {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        bottom: var(--footer-h, 0px) !important; /* end at footer */
        /* Slide in from the right on mobile */
        transform: translateX(100vw) !important;
        width: 100vw !important;
        height: calc(100dvh - var(--footer-h, 0px)) !important; /* fill to footer using dynamic viewport */
        border-radius: 0 !important;
        z-index: 1203 !important; /* above backdrop */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: none !important;
        background: #1f2937 !important;
        border: none !important;
        overflow: visible !important;
        max-height: none !important;
        display: flex !important;
        flex-direction: column !important;
        /* Ensure panel doesn't block other controls when closed */
        pointer-events: none !important;
        /* Hide panel completely when closed to prevent any overlap */
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Re-enable pointer events and show panel when open */
    .unified-search-container.open .search-panel {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search panel swipe handle */
    /* Purpose: Visual indicator for swipe up to close */
    .search-panel::before {
        display: none !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search panel when open */
    /* Purpose: Mobile search panel open state - slides in from right */
    .unified-search-container.open .search-panel {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search header styling */
    /* Purpose: Mobile search header styling with swipe indicator */
    .search-header {
        padding: 1.25rem 1rem 0.75rem 1rem !important;
        border-bottom: 1px solid #374151 !important;
        background: #111827 !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile swipe indicator */
    /* Purpose: Visual indicator for swipe down to close */
    .search-header::before {
        content: '' !important;
        position: absolute !important;
        top: 0.5rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 3rem !important;
        height: 0.25rem !important;
        background: #6b7280 !important;
        border-radius: 0.125rem !important;
        opacity: 0.6 !important;
        transition: all 0.3s ease !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile swipe indicator animation */
    /* Purpose: Animate swipe indicator when dragging */
    .unified-search-container.open .search-panel.dragging .search-header::before {
        width: 4rem !important;
        background: #9ca3af !important;
        opacity: 0.8 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile header top row */
    /* Purpose: Mobile header top row styling */
    .header-top-row {
        margin-bottom: 0.75rem !important;
        gap: 0.75rem !important;
        justify-content: space-between !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search header after */
    /* Purpose: Mobile search header after element */
    .search-header::after {
        display: none !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search header title */
    /* Purpose: Mobile search header title styling */
    .search-header h3 {
        font-size: 1rem !important;
        justify-content: flex-start !important;
        margin-right: 0 !important;
        color: #f9fafb !important;
        font-weight: 600 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search results scrolling */
    /* Purpose: Ensure search results are scrollable on mobile fullscreen */
    .search-results {
        height: auto !important;
        max-height: none !important;
        overflow-y: auto !important;
        flex: 1 !important;
        min-height: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile close search button */
    /* Purpose: Mobile close search button */
    .close-search-btn {
        width: 1.75rem !important;
        height: 1.75rem !important;
        background: #374151 !important;
        border: 1px solid #4b5563 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        color: #f9fafb !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        flex-shrink: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile close search button hover */
    /* Purpose: Mobile close search button hover effect */
    .close-search-btn:hover {
        background: #4b5563 !important;
        border-color: #6b7280 !important;
        color: #f9fafb !important;
        transform: scale(1.05) !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile close search button active */
    /* Purpose: Mobile close search button active effect */
    .close-search-btn:active {
        background: #6b7280 !important;
        transform: scale(0.95) !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile controls row */
    /* Purpose: Mobile controls row styling */
    .controls-row {
        margin-bottom: 0.25rem !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search mode selector */
    /* Purpose: Mobile search mode selector container */
    .search-mode-selector {
        position: relative !important;
        margin-bottom: 0.75rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search mode selector after */
    /* Purpose: Mobile search mode selector after element */
    .search-mode-selector::after {
        display: none !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile mode toggle */
    /* Purpose: Mobile mode toggle styling */
    .mode-toggle {
        background: #374151 !important;
        border: 1px solid #4b5563 !important;
        border-radius: 0.5rem !important;
        padding: 0.1875rem !important;
        gap: 0.1875rem !important;
        flex: 1 !important;
        max-width: none !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile mode button */
    /* Purpose: Mobile mode button styling */
    .mode-btn {
        padding: 0.375rem 1rem !important;
        font-size: 0.75rem !important;
        border-radius: 0.375rem !important;
        min-height: 1.75rem !important;
        overflow: hidden !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile mode button background */
    /* Purpose: Mobile mode button background effect */
    .mode-btn::before {
        border-radius: 0.375rem !important;
        background: #1f2937 !important;
        z-index: -1 !important;
        transition: all 0.2s ease !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile active mode button */
    /* Purpose: Mobile active mode button styling */
    .mode-btn.active {
        color: #ffffff !important;
        font-weight: 600 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile mode button hover */
    /* Purpose: Mobile mode button hover effect */
    .mode-btn:hover {
        color: #9ca3af !important;
    }
    
    .mode-btn:hover::before {
        opacity: 0.3 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile active mode button hover */
    /* Purpose: Mobile active mode button hover effect */
    .mode-btn.active:hover {
        color: #ffffff !important;
    }
    
    .mode-btn.active::before {
        opacity: 1 !important;
        background: #3b82f6 !important;
    }
    

    
    /* Used in: js/unified-search-module.js - Mobile file selector button content */
    /* Purpose: Mobile file selector button content positioning */
    .file-selector-btn .file-icon,
    .file-selector-btn .file-count {
        position: relative !important;
        z-index: 1 !important;
        padding-bottom: 0.25rem;
    }
    
    /* Used in: js/unified-search-module.js - Mobile mode button content */
    /* Purpose: Mobile mode button content positioning */
    .mode-btn .mode-icon,
    .mode-btn .mode-text {
        position: relative !important;
        z-index: 2 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file icon */
    /* Purpose: Mobile file icon styling */
    .file-selector-btn .file-icon {
        /* font-size: 1rem !important; */
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file count */
    /* Purpose: Mobile file count badge styling */
    .file-selector-btn .file-count {
        font-size: 0.5rem !important;
        padding: 0.25rem 0.25rem !important;
        min-width: 0.25rem !important;
        height: 0.35rem !important;
        border-radius: 0.5rem !important;
        position: absolute !important;
        top: -0.25rem !important;
        right: -0.25rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #1f2937 !important;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector dropdown */
    /* ==========================================================================
       MOBILE FILE SELECTOR DROPDOWN - FIXED FOR MOBILE VISIBILITY
       ========================================================================== */
    /* Purpose: Mobile file selector dropdown styling */
    /* FIXED: Removed opacity: 0 and visibility: hidden to allow JavaScript control */
    /* FIXED: Added z-index: 1000 to ensure dropdown appears above other content */
    .file-selector-dropdown {
        position: static !important;
        background: #1f2937 !important;
        border: 1px solid #374151 !important;
        border-radius: 0.5rem !important;
        box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.3) !important;
        max-height: 20rem !important;
        /* overflow-y: auto !important; */
        margin: 0.5rem 1rem !important;
        z-index: 1000 !important; /* FIXED: Added to prevent hiding behind other elements */
        /* FIXED: Let JavaScript control visibility instead of CSS defaults */
        transform: translateY(-0.25rem) !important;
        transition: all 0.2s ease !important;
        /* FIXED: Removed display: none !important; to allow JavaScript to control visibility */
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector dropdown scrollbar */
    /* Purpose: Mobile file selector dropdown scrollbar styling */
    .file-selector-dropdown::-webkit-scrollbar {
        width: 8px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector dropdown scrollbar track */
    /* Purpose: Mobile file selector dropdown scrollbar track */
    .file-selector-dropdown::-webkit-scrollbar-track {
        background: #374151 !important;
        border-radius: 4px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector dropdown scrollbar thumb */
    /* Purpose: Mobile file selector dropdown scrollbar thumb */
    .file-selector-dropdown::-webkit-scrollbar-thumb {
        background: #6b7280 !important;
        border-radius: 4px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector dropdown scrollbar thumb hover */
    /* Purpose: Mobile file selector dropdown scrollbar thumb hover */
    .file-selector-dropdown::-webkit-scrollbar-thumb:hover {
        background: #9ca3af !important;
    }
    
    /* ==========================================================================
       MOBILE FILE SELECTOR ITEMS - FIXED FOR MOBILE DISPLAY
       ========================================================================== */
    /* Used in: js/unified-search-module.js - Mobile file selector item */
    /* Purpose: Mobile file selector item styling */
    /* FIXED: Added missing flex properties for proper mobile layout */
    .file-selector-item {
        padding: 10px 14px !important;
        display: flex !important; /* FIXED: Added for proper item layout */
        align-items: center !important; /* FIXED: Added for vertical centering */
        gap: 10px !important;
        cursor: pointer !important;
        transition: background 0.2s ease !important;
        border-bottom: 1px solid #374151 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector item hover */
    /* Purpose: Mobile file selector item hover effect */
    .file-selector-item:hover {
        background: #374151 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector item last child */
    /* Purpose: Mobile file selector item last child styling */
    .file-selector-item:last-child {
        border-bottom: none !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector item checkbox */
    /* Purpose: Mobile file selector item checkbox styling */
    /* FIXED: Added missing checkbox properties for proper mobile display */
    .file-selector-item input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        accent-color: #3b82f6 !important; /* FIXED: Added for proper checkbox color */
        cursor: pointer !important; /* FIXED: Added for proper interaction */
        flex-shrink: 0 !important; /* FIXED: Added to prevent checkbox shrinking */
    }
    
    /* Used in: js/unified-search-module.js - Mobile file selector item label */
    /* Purpose: Mobile file selector item label styling */
    /* FIXED: Added missing flex properties for proper mobile label layout */
    .file-selector-item label {
        flex: 1 !important; /* FIXED: Added to take remaining space */
        cursor: pointer !important;
        font-size: 13px !important;
        color: #f9fafb !important;
        display: flex !important; /* FIXED: Added for proper label layout */
        flex-direction: column !important; /* FIXED: Added for vertical stacking */
        gap: 0.125rem !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file name */
    /* Purpose: Mobile file name styling */
    .file-name {
        font-weight: 500 !important;
        color: #f9fafb !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file info */
    /* Purpose: Mobile file info styling */
    .file-info {
        font-size: 12px !important;
        color: #9ca3af !important;
        margin-top: 3px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile file description */
    /* Purpose: Mobile file description styling */
    .file-description {
        font-size: 11px !important;
        color: #6b7280 !important;
        margin-top: 2px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile select buttons */
    /* Purpose: Mobile select buttons container */
    .select-buttons {
        display: flex !important;
        gap: 8px !important;
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 1px solid #374151 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile select all/none buttons */
    /* Purpose: Mobile select all/none buttons styling */
    .select-all-btn,
    .select-none-btn {
        flex: 1 !important;
        padding: 8px 12px !important;
        background: #374151 !important;
        border: 1px solid #4b5563 !important;
        border-radius: 6px !important;
        color: #f9fafb !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile select all/none buttons hover */
    /* Purpose: Mobile select all/none buttons hover effect */
    .select-all-btn:hover,
    .select-none-btn:hover {
        background: #4b5563 !important;
        border-color: #6b7280 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search input container */
    /* Purpose: Mobile search input container styling */
    .search-input-container {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #374151 !important;
        background: #111827 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile form wrapper inside search input container */
    .search-input-container form {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }
    
    .search-input-container::after {
        display: none !important;
    }
    
    .search-input-container input {
        flex: 1 !important;
        padding: 0.75rem 0.875rem !important;
        font-size: 0.75rem !important;
        border-radius: 0.5rem !important;
        min-width: 0 !important;
    }
    
    /* Mobile datalist styling */
    .search-input-container datalist {
        font-size: 0.75rem !important;
        background: #1f2937 !important;
        border: 1px solid #4b5563 !important;
        border-radius: 0.5rem !important;
        color: #f9fafb !important;
    }
    
    /* Ensure proper positioning on mobile */
    .search-input-container {
        position: relative !important;
        overflow: visible !important;
    }
    
    /* Mobile suggestions dropdown */
    .suggestions-dropdown {
        position: absolute !important;
        top: calc(100% + 2px) !important;
        left: 0.75rem !important;
        right: 0.75rem !important;
        background: #1f2937 !important;
        border: 1px solid #4b5563 !important;
        border-radius: 0.5rem !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
        max-height: 150px !important;
        overflow-y: auto !important;
        /* Allow positioning above input when keyboard is visible */
        bottom: auto !important;
    }
    
    .suggestion-item {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
        color: #f9fafb !important;
        cursor: pointer !important;
        border-bottom: 1px solid #374151 !important;
    }
    
    .suggestion-item:hover {
        background: #374151 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search input focus */
    /* Purpose: Mobile search input focus effect */
    .search-input-container input:focus {
        color: #f9fafb !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search input placeholder */
    /* Purpose: Mobile search input placeholder styling */
    .search-input-container input::placeholder {
        color: #9ca3af !important;
        font-style: italic !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search stats */
    /* Purpose: Mobile search stats styling */
    .search-stats {
        padding: 0.5rem 1rem !important;
        background: #111827 !important;
        border-top: 1px solid #374151 !important;
        font-size: 0.6875rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search stats icon */
    /* Purpose: Mobile search stats icon styling */
    .search-stats::before {
        margin-right: 0.5rem !important;
        font-size: 0.6875rem !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile stats text */
    /* Purpose: Mobile stats text styling */
    .stats-text {
        font-size: 0.6875rem !important;
        color: #9ca3af !important;
        font-weight: 400 !important;
        line-height: 1.4 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile no results */
    /* Purpose: Mobile no results container */
    .no-results {
        padding: 30px 20px !important;
        text-align: center !important;
        color: #9ca3af !important;
        background: #111827 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile no results icon */
    /* Purpose: Mobile no results icon styling */
    .no-results-icon {
        font-size: 32px !important;
        margin-bottom: 12px !important;
        opacity: 0.5 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile no results text */
    /* Purpose: Mobile no results text styling */
    .no-results-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search loading */
    /* Purpose: Mobile search loading container */
    .search-loading {
        padding: 30px 20px !important;
        text-align: center !important;
        color: #3b82f6 !important;
        background: #111827 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile spinner */
    /* Purpose: Mobile spinner animation */
    .spinner {
        width: 24px !important;
        height: 24px !important;
        border: 3px solid #374151 !important;
        border-top: 3px solid #3b82f6 !important;
        border-radius: 50% !important;
        animation: spin 1s linear infinite !important;
        margin: 0 auto 12px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search button positioning */
    /* Purpose: Mobile search button positioning and alignment */
    .unified-search-container {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 1202 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        /* Ensure container doesn't block other controls */
        pointer-events: none !important;
        /* Constrain container size to prevent overlap */
        width: 2.5rem !important; /* Same as button width */
        height: 2.5rem !important; /* Same as button height */
        max-width: 2.5rem !important;
        max-height: 2.5rem !important;
        overflow: visible !important;
    }
    
    /* Re-enable pointer events for the search button itself */
    .unified-search-container .search-button {
        pointer-events: auto !important;
        width: 2.5rem !important;
        height: 2.5rem !important;
        border-radius: 50% !important;
        background: #1f2937 !important;
        border: 1px solid #374151 !important;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.2) !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search button */
    /* Purpose: Mobile search button styling */
    .search-btn {
        width: 1.75rem !important;
        height: 1.75rem !important;
        flex-shrink: 0 !important;
        background: #4b5563 !important;
        border: 1px solid #6b7280 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .search-btn::before {
        width: 0.875rem !important;
        height: 0.875rem !important;
    }
    
    .search-btn:hover {
        background: #6b7280 !important;
        transform: scale(1.05) !important;
    }
    
    .search-btn:active {
        background: #9ca3af !important;
        transform: scale(0.95) !important;
    }
}

/* ==========================================================================
   GROUP 3: MOBILE CONTROLS PANEL (max-width: 600px)
   ========================================================================== */

/* Used in: index.html - Mobile controls panel */
/* Purpose: Mobile controls panel styling */
@media (max-width: 600px) {
    /* Used in: index.html - Mobile controls panel */
    /* Purpose: Mobile controls panel styling - leave room for footer */
    #controls {
        width: 100vw !important;
        height: calc(var(--vh, 1vh) * 100 - var(--footer-h, 0px)) !important; /* iOS Safari fix with dynamic viewport */
        border-radius: 0;
        font-size: 13px;
        box-sizing: border-box;
        left: -100vw !important;
        top: 0 !important;
        bottom: var(--footer-h, 0px) !important; /* align with footer height */
        border-right: none !important;
        background: #1f2937 !important;
        overflow-y: auto !important; /* allow vertical scroll when content exceeds viewport */
        -webkit-overflow-scrolling: touch !important; /* smooth scrolling on iOS */
        overscroll-behavior: contain !important; /* prevent rubber-banding affecting map */
    }
    
    /* Used in: index.html - Mobile controls panel open */
    /* Purpose: Open state for mobile controls panel - leave room for footer */
    #controls.open {
        left: 0 !important;
        z-index: 1200 !important;
        width: 100vw !important;
        height: calc(100dvh - var(--footer-h, 0px)) !important;
        overflow-y: auto !important;
    }
    
    /* Used in: index.html - Mobile controls backdrop */
    /* Purpose: Backdrop for mobile controls */
    .controls-backdrop {
        display: block !important;
        bottom: var(--footer-h, 0px) !important; /* don't cover footer */
    }
    
    /* Removed keep-visible override to avoid duplicate circles */
    
    /* Used in: index.html - Mobile action buttons */
    /* Purpose: Action buttons container for mobile */
    .action-buttons {
        padding: 5px;
    }
    
    /* Used in: index.html - Mobile action button */
    /* Purpose: Individual action button for mobile */
    .action-btn {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 32px;
    }
    
    /* Used in: index.html - Mobile menu section */
    /* Purpose: Menu section styling for mobile */
    .menu-section {
        padding: 6px 8px;
        padding-right: 10rem; /* leave edge swipe zone on right */
    }
    
    /* Used in: index.html - Mobile section header */
    /* Purpose: Section header styling for mobile */
    .section-header {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    /* Used in: index.html - Mobile checkbox list */
    /* Purpose: Checkbox list styling for mobile */
    .checkbox-list {
        gap: 1px;
    }
    
    /* Used in: index.html - Mobile checkbox item */
    /* Purpose: Checkbox item styling for mobile */
    .checkbox-item {
        padding: 4px 0;
        font-size: 12px;
        touch-action: manipulation;
        cursor: pointer;
        padding-right: 16px; /* keep small gutter for edge swipe */
    }

    /* Force Case selector to stack its dropdown under the checkbox on mobile */
    .checkbox-item.case-selector {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        padding-right: 0 !important; /* dropdown will be full-width below */
    }
    .checkbox-item.case-selector > label.checkbox-item {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
    .checkbox-item.case-selector > .case-file-selector {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 6px !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Used in: index.html - Mobile action buttons */
    /* Purpose: Action button styling for mobile */
    .action-btn {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 32px;
        touch-action: manipulation;
        cursor: pointer;
    }
    
    /* Used in: index.html - Mobile buttons */
    /* Purpose: Button styling for mobile */
    #controls button {
        font-size: 12px;
        min-height: 28px;
        padding: 4px 6px;
        border-radius: 5px;
        touch-action: manipulation;
        cursor: pointer;
    }
    
    /* Used in: index.html - Mobile inputs */
    /* Purpose: Input styling for mobile */
    #controls input[type="checkbox"] {
        touch-action: manipulation;
        cursor: pointer;
    }
    
    /* Used in: index.html - Mobile close menu button */
    /* Purpose: Show close button on mobile for full-screen menu */
    #closemenu-btn {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 2.5rem !important;
        height: 2.5rem !important;
        background: #1f2937 !important;
        border: 1px solid #374151 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.2) !important;
        z-index: 1201 !important;
        outline: none !important;
        padding: 0 !important;
    }
    
    #closemenu-btn:hover {
        background: #374151 !important;
        border-color: #4b5563 !important;
        transform: translateY(-0.125rem) !important;
        box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.3) !important;
    }
    
    #closemenu-btn:active {
        transform: translateY(0) !important;
        background: #4b5563 !important;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.2) !important;
    }
    
    #closemenu-btn svg {
        width: 20px !important;
        height: 20px !important;
        transition: transform 0.3s ease !important;
    }
    
    #closemenu-btn:hover svg {
        transform: scale(1.1) !important;
    }
    
    /* Used in: index.html - Mobile controls label */
    /* Purpose: Label styling for mobile controls */
    #controls label {
        font-size: 14px;
    }
    
    /* Used in: index.html - Mobile controls button */
    /* Purpose: Button styling for mobile controls */
    #controls button {
        font-size: 13px;
        min-height: 28px;
        padding: 4px 5px;
        border-radius: 5px;
    }
    
    /* Used in: index.html - Mobile hamburger button */
    /* Purpose: Hamburger menu button for mobile */
    #hamburger-btn {
        position: fixed !important;
        top: 1rem !important;
        left: 1rem !important;
        width: 2.5rem !important;
        height: 2.5rem !important;
        background: #1f2937 !important;
        border: 1px solid #374151 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.2) !important;
        z-index: 1202 !important;
        outline: none !important;
        padding: 0 !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile search button alignment */
    /* Purpose: Align search button with hamburger button on mobile */
    /* REMOVED: Conflicting positioning rules */
    
    /* Used in: js/unified-search-module.js - Mobile search button sizing */
    /* Purpose: Match search button size with hamburger button on mobile */
    /* REMOVED: Conflicting sizing rules */
    
    /* Used in: js/unified-search-module.js - Mobile search button pulse animation */
    /* Purpose: Subtle pulse animation to indicate swipe capability */
    /* REMOVED: Duplicate keyframes */
    
    /* Used in: js/unified-search-module.js - Mobile locate and navigate buttons */
    /* Purpose: Mobile-specific styling for action buttons in search results */
    .result-action .locate-btn,
    .result-action .navigate-btn {
        min-width: 2.25rem !important;
        height: 1.75rem !important;
        padding: 5px 8px !important;
        font-size: 10px !important;
        gap: 3px !important;
        transition: all 0.2s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .result-action .locate-btn svg,
    .result-action .navigate-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    /* Used in: js/unified-search-module.js - Mobile button container */
    /* Purpose: Ensure mobile buttons maintain vertical stacking */
    .result-action {
        flex-direction: column !important;
        gap: 0.375rem !important;
        align-items: flex-start !important;
    }
    
    /* Used in: index.html - Mobile hamburger button */
    /* Purpose: Hover state for mobile hamburger button */
    #hamburger-btn:hover {
        background: #374151;
        border-color: #4b5563;
        transform: translateY(-0.125rem);
        box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.3);
    }
    
    /* Used in: index.html - Mobile hamburger button active */
    /* Purpose: Active state for mobile hamburger button */
    #hamburger-btn:active {
        transform: translateY(0);
        background: #4b5563;
        box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.2);
    }
    
    /* Used in: index.html - Mobile hamburger button SVG */
    /* Purpose: SVG icon for mobile hamburger button */
    #hamburger-btn svg {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
    }
    
    /* Used in: index.html - Mobile hamburger button SVG hover */
    /* Purpose: SVG hover effect for mobile hamburger button */
    #hamburger-btn:hover svg {
        transform: scale(1.1);
    }
    
    /* Used in: index.html - Mobile leaflet bottom right */
    /* Purpose: Pin controls above footer and Android/iOS safe areas (gesture/nav bar) */
    :root { --zoom-bottom-nudge: 32px; }

    .leaflet-bottom.leaflet-right {
        right: calc(8px + env(safe-area-inset-right, 0px));
        bottom: calc(var(--footer-h, 0px) + env(safe-area-inset-bottom, 0px) + var(--zoom-bottom-nudge));
        margin: 0 !important;
    }
    
    /* Used in: index.html - Mobile zoom controls */
    /* Purpose: Zoom controls styling for mobile; larger touch targets and above overlays */
    .leaflet-control-zoom {
        border-radius: 8px !important;
        z-index: 1204 !important; /* Above footer/backdrops */
        pointer-events: auto !important;
        touch-action: manipulation !important;
        margin: 0 !important;
        position: relative;
    }
    
    /* Used in: index.html - Mobile zoom control buttons */
    /* Purpose: Same size as desktop for consistency */
    .leaflet-control-zoom a {
        font-size: 16px !important;
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Used in: index.html - Mobile zoom in button */
    /* Purpose: Zoom in button styling for mobile */
    .leaflet-control-zoom a.leaflet-control-zoom-in {
        border-radius: 4px 4px 0 0 !important;
    }
    
    /* Used in: index.html - Mobile zoom out button */
    /* Purpose: Zoom out button styling for mobile */
    .leaflet-control-zoom a.leaflet-control-zoom-out {
        border-radius: 0 0 4px 4px !important;
    }
    
    
    /* Used in: index.html - Mobile popup content wrapper */
    /* Purpose: Popup content wrapper for mobile */
    .leaflet-popup-content-wrapper {
        border-radius: 6px !important;
        max-width: 280px !important;
    }
    
    /* Used in: index.html - Mobile popup content */
    /* Purpose: Popup content for mobile */
    .leaflet-popup-content {
        font-size: 13px !important;
        padding: 8px !important;
    }
    
    /* Used in: index.html - Mobile popup content button */
    /* Purpose: Popup content button for mobile */
    .leaflet-popup-content button {
        font-size: 11px !important;
        padding: 5px 10px !important;
        margin: 3px 1px !important;
    }
    
    /* Used in: index.html - Mobile case marker content */
    /* Purpose: Case marker content for mobile */
    .case-marker-content {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
    
    /* Used in: index.html - Mobile scari marker content */
    /* Purpose: Scari marker content for mobile */
    .scari-marker-content {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
    
    /* Used in: index.html - Mobile scari point content */
    /* Purpose: Scari point content for mobile */
    .scari-point-content {
        width: 20px !important;
        height: 20px !important;
        font-size: 11px !important;
    }
    
    /* Used in: index.html - Mobile google style cluster */
    /* Purpose: Google style cluster for mobile */
    .google-style-cluster {
        width: 36px !important;
        height: 36px !important;
    }
    
    /* Used in: index.html - Mobile cluster count */
    /* Purpose: Cluster count for mobile */
    .cluster-count,
    .leaflet-container .cluster-count,
    .leaflet-container .google-style-cluster,
    .leaflet-container .marker-cluster div,
    .leaflet-container .marker-cluster-camereta div {
        font-size: 8px !important;
    }
    
    /* Used in: index.html - Mobile attribution footer */
    /* Purpose: Attribution footer for mobile */
    #attribution-footer {
        font-size: 10px; /* closer to desktop size for readability */
        padding: calc(2px + env(safe-area-inset-bottom, 0px)) 6px 2px 6px;
        bottom: env(safe-area-inset-bottom, 0px);
    }
}

/* ==========================================================================
   GROUP 4: HIGH DPI DISPLAYS - RETINA SCREENS
   ========================================================================== */

/* Used in: index.html - High DPI display support */
/* Purpose: Enhanced styling for high-resolution displays (retina screens) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Used in: index.html - Controls panel border for high DPI */
    /* Purpose: Subtle border for controls panel on high DPI displays */
    #controls {
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* ==========================================================================
   GROUP 5: PRINT STYLES
   ========================================================================== */

/* Used in: index.html - Print media query */
/* Purpose: Optimized styles for printing the map application */
@media print {
    /* Used in: index.html - Hide UI elements when printing */
    /* Purpose: Hide navigation and control elements for clean print output */
    #controls, #hamburger-btn, #closemenu-btn {
        display: none;
    }
    
    /* Used in: index.html - Full-size map for printing */
    /* Purpose: Ensure map takes full viewport size when printing */
    #map {
        height: var(--dynamic-vh);
        width: 100vw;
    }
}

/* ==========================================================================
   GROUP 6: LOCATION NOTIFICATION MARKER RESPONSIVE STYLES
   ========================================================================== */

/* Used in: js/unified-search-module.js - Mobile responsive location notification */
/* Purpose: Responsive styling for location notification markers on mobile */
@media (max-width: 600px) {
    .location-notification-content {
        max-width: 250px !important;
        padding: 12px !important;
        font-size: 13px !important;
    }
    
    .location-notification-content::after {
        bottom: -6px !important;
        border-left-width: 6px !important;
        border-right-width: 6px !important;
        border-top-width: 6px !important;
    }
    
    .location-notification-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
    }
    
    .location-notification-subtitle {
        font-size: 12px !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }
    
    .location-notification-btn {
        padding: 4px 8px !important;
        font-size: 11px !important;
    }
    
    .location-notification-close-btn {
        padding: 4px 6px !important;
        font-size: 10px !important;
        min-width: 20px !important;
        height: 20px !important;
    }
    
    /* Navigation Modal - Tablet Styles */
    .navigation-modal-content {
        max-width: 85% !important;
        width: 85% !important;
    }
    
    .navigation-modal-header {
        padding: 16px 20px !important;
    }
    
    .navigation-modal-header h3 {
        font-size: 16px !important;
    }
    
    .navigation-modal-close {
        width: 28px !important;
        height: 28px !important;
        font-size: 20px !important;
    }
    
    .navigation-modal-body {
        padding: 20px !important;
    }
    
    .navigation-modal-body p {
        font-size: 12px !important;
        padding: 10px !important;
        margin-bottom: 16px !important;
    }
    
    .navigation-options {
        gap: 10px !important;
    }
    
    .navigation-option {
        padding: 12px 14px !important;
    }
    
    .navigation-icon {
        margin-right: 12px !important;
    }
    
    .navigation-icon img {
        width: 20px !important;
        height: 20px !important;
    }
    
    .navigation-title {
        font-size: 14px !important;
        margin-bottom: 3px !important;
    }
    
    .navigation-subtitle {
        font-size: 11px !important;
    }
}

/* Used in: js/unified-search-module.js - Small mobile responsive location notification */
/* Purpose: Responsive styling for location notification markers on small mobile */
@media (max-width: 480px) {
    .location-notification-content {
        max-width: 220px !important;
        padding: 10px !important;
        font-size: 12px !important;
    }
    
    .location-notification-content::after {
        bottom: -5px !important;
        border-left-width: 5px !important;
        border-right-width: 5px !important;
        border-top-width: 5px !important;
    }
    
    .location-notification-title {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }
    
    .location-notification-subtitle {
        font-size: 11px !important;
        line-height: 1.1 !important;
        margin-bottom: 5px !important;
    }
    
    .location-notification-btn {
        padding: 3px 6px !important;
        font-size: 10px !important;
    }
    
    .location-notification-close-btn {
        padding: 3px 5px !important;
        font-size: 9px !important;
        min-width: 18px !important;
        height: 18px !important;
    }
}

/* Used in: js/unified-search-module.js - Tablet responsive location notification */
/* Purpose: Responsive styling for location notification markers on tablets */
@media (min-width: 601px) and (max-width: 1024px) {
    .location-notification-content {
        max-width: 280px !important;
        padding: 14px !important;
        font-size: 14px !important;
    }
    
    .location-notification-content::after {
        bottom: -7px !important;
        border-left-width: 7px !important;
        border-right-width: 7px !important;
        border-top-width: 7px !important;
    }
    
    .location-notification-title {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }
    
    .location-notification-subtitle {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .location-notification-btn {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }
    
    .location-notification-close-btn {
        padding: 5px 7px !important;
        font-size: 11px !important;
        min-width: 22px !important;
        height: 22px !important;
    }
    
    /* Navigation Modal - Mobile Compact Styles */
    .navigation-modal-content {
        max-width: 95% !important;
        width: 95% !important;
        margin: 10px !important;
    }
    
    .navigation-modal-header {
        padding: 12px 16px !important;
    }
    
    .navigation-modal-header h3 {
        font-size: 14px !important;
    }
    
    .navigation-modal-close {
        width: 24px !important;
        height: 24px !important;
        font-size: 18px !important;
    }
    
    .navigation-modal-body {
        padding: 16px !important;
    }
    
    .navigation-modal-body p {
        font-size: 11px !important;
        padding: 8px !important;
        margin-bottom: 12px !important;
    }
    
    .navigation-options {
        gap: 8px !important;
    }
    
    .navigation-option {
        padding: 10px 12px !important;
    }
    
    .navigation-icon {
        margin-right: 10px !important;
    }
    
    .navigation-icon img {
        width: 18px !important;
        height: 18px !important;
    }
    
    .navigation-title {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }
    
    .navigation-subtitle {
        font-size: 10px !important;
    }
}
