﻿#space-station-map {
    width: 100%;
    height: auto;
    max-width: 900px;
    display: block;
}

/* style continents */
#space-station-map .land {
    fill: currentColor;
    fill-opacity: 0.6;
}

#space-station-map .land.antarctica {
    fill: currentColor;
    fill-opacity: 0.3;
}

#space-station-map #iss circle {
    fill: #d64545;
    stroke: currentColor;
}

.space-station svg {
    border: solid 1px #b3b3b3;
}


/* Dark theme overrides */

html[data-theme="dark"] .space-station svg {
    border-color: #707171;
}

@media (prefers-color-scheme: dark) {
    html:not([data-theme]) .space-station svg {
        border-color: #707171;
    }
}

/* Modified */