/* OpenLayers map */
#map {
    height: calc(100vh - 24px);
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1f2937;
    position: relative;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, .15), 0 30px 80px rgba(0, 0, 0, .35);
}

/* Map container */
#map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Text box connected to mouse when hovering over markers/clusters */
.tooltip {
    position: absolute;
    background: rgba(8, 13, 28, .92);
    color: #fff;
    border: 1px solid #253149;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}
