body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
#maplibreMap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

/* #maplibreMap {
    width: 100vw;
    height: 100vh;
} */

:root {
    --marker-color-default: linear-gradient(180deg, #f1f1d2 0%, #f2bbcc 100%);
    --marker-color-hover: linear-gradient(180deg, #dadf8f 0%, #ff7d64 100%);
    --marker-border-color: #5d55c0;
    --marker-text-color: rgba(8, 30, 128, 0.959);
    --marker-color-small: linear-gradient(180deg, #64ff9a 0%, #51bbd6 100%);
    --marker-color-medium: linear-gradient(180deg, #6ee0ff 0%, #f1f075 100%);
    --marker-color-large: linear-gradient(180deg, #d9e085 0%, #f28cb1 100%);
}

.cluster-marker {
    background: var(--marker-color-default);
    border: 0px solid var(--marker-border-color);
    color: var(--marker-text-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    /* font-weight: bold; */
    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cluster-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    background: var(--marker-color-hover);
}

.cluster-marker.small {
    background: var(--marker-color-small);
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.cluster-marker.medium {
    background: var(--marker-color-medium);
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.cluster-marker.large {
    background: var(--marker-color-large);
    width: 40px;
    height: 40px;
    line-height: 40px;
}


.style-selector-container {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    z-index: 1;
}

.map-style-select {
    appearance: none;
    padding: 4px 24px 4px 8px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Roboto Condensed", Roboto, sans-serif;
    color: #1a202c;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.map-style-select:hover {
    border-color: #cbd5e0;
    background-color: #f7fafc;
}

.map-style-select:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.1);
}

.map-style-select option {
    padding: 4px;
}

.style-selector-container::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #4a5568;
    pointer-events: none;
}

.aircraft-marker {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.aircraft-marker svg {
    transform-origin: center center;
}

.mapboxgl-ctrl {
    top: 10px; /* Add spacing on mobile */
    right: 10px;
}

.ship-marker {
    width: 10px;
    height: 10px;
}


.ship-count-box {
    background: white;
    padding: 6px 8px;
    font-family: monospace;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


.ac-card {
    font-family: "Space Grotesk", sans-serif;
    background: #ffffff;
    color: #222;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    padding: 16px;
    width: 280px;
    max-width: 90vw;
    font-size: 14px;
    line-height: 1.5;
}

.ac-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.ac-flight {
    font-weight: bold;
    font-size: 16px;
}

.ac-category {
    font-family: 'Grostek', sans-serif;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Category colors */
.ac-category.unknown     { background: #f0f0f0; color: #777; }
.ac-category.light       { background: #d1ecf1; color: #0c5460; }
.ac-category.medium      { background: #fff3cd; color: #856404; }
.ac-category.heavy       { background: #f8d7da; color: #721c24; }
.ac-category.highperf    { background: #d4edda; color: #155724; }

.ac-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ac-row {
    display: flex;
    justify-content: space-between;
}

.ac-label {
    font-weight: 500;
    color: #555;
    min-width: 80px;
}

.ac-value {
    font-family: 'Grostek', sans-serif;
    font-weight: bold;
    text-align: right;
    flex-grow: 1;
}

.ac-value small {
    color: #888;
    font-weight: normal;
    font-size: 12px;
}




