/* legend */ .hud-panel-legend { bottom: var(--hud-offset); left: var(--hud-offset); border-radius: var(--hud-radius); padding: var(--hud-panel-padding); width: calc(220px * var(--hud-scale)); z-index: 10; font-size: var(--hud-font-size); } .hud-panel-legend .legend-title { margin-bottom: var(--hud-gap-md); } .hud-panel-legend .legend-list { display: flex; flex-direction: column; gap: var(--hud-gap-sm); max-height: calc(202px * var(--hud-scale)); overflow-y: auto; padding-right: calc(4px * var(--hud-scale)); scrollbar-width: thin; scrollbar-color: rgba(160, 220, 255, 0.4) transparent; } .hud-panel-legend .legend-list::-webkit-scrollbar { width: 6px; } .hud-panel-legend .legend-list::-webkit-scrollbar-track { background: transparent; } .hud-panel-legend .legend-list::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(210, 237, 255, 0.28), rgba(110, 176, 255, 0.34)); border-radius: 999px; } .hud-panel-legend .legend-item { display: flex; align-items: center; padding: calc(6px * var(--hud-scale)) calc(8px * var(--hud-scale)); border-radius: calc(10px * var(--hud-scale)); background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(120, 180, 255, 0.02)); border: 1px solid rgba(225, 242, 255, 0.06); } .hud-panel-legend .legend-color { width: calc(20px * var(--hud-scale)); height: calc(20px * var(--hud-scale)); border-radius: calc(6px * var(--hud-scale)); margin-right: var(--hud-gap-md); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 12px rgba(77, 184, 255, 0.18); } .legend-color-americas { background-color: #ff4444; } .legend-color-au-a { background-color: #44ff44; } .legend-color-au-b { background-color: #4444ff; } .legend-color-default { background-color: #ffff44; }