:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #242424;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    display: flex;
    place-items: center;
    min-width: 320px;
    min-height: 100vh;
}

#root {
    width: 100%;
    height: 100vh;
}

.map-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.sidebar {
    background-color: #f8f9fa;
    color: #333;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.sidebar h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.results-list {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.maplibregl-popup-content {
    color: #333;
    max-height: 300px;
    overflow-y: auto;
}

table.popup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

table.popup-table th,
table.popup-table td {
    padding: 3px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .sidebar {
        width: 100vw !important;
        position: absolute !important;
        z-index: 200 !important;
    }

    .mobile-only {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}