body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #222;
    color: whitesmoke;
}

svg {
    background-color: rgba(250, 250, 250, .1);
}

path {
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

circle {
    fill: currentColor;
}

text {
    font-size: .25rem;
    font-family: sans-serif, -apple-system, sans-serif;
    fill: currentColor;
}

textarea {
    height:10rem;
    resize: vertical;
}

section {
    display: grid;
    grid-template-columns: 1fr .5fr;
    margin: 0 auto;
    max-width: 800px;
}

#map header {
    padding: 1rem;
    box-sizing: border-box;
    display: grid;
    gap: 1fr;
    grid-template-columns:repeat(3, auto);
    font-weight: bold;
    font-size: .8rem;
    line-height: 1rem;
}

#opts {
    padding-top: 2rem;
}

#opts header {
    text-decoration: underline;
    font-weight: bold;
    text-align: center;
}

label {
    display: block;
    padding: 1rem;
    box-sizing: border-box;
}

label span {
    display: block;
    line-height: 1.5rem;
}

input, textarea {
    display: block;
    width: 100%;
    padding: .5rem;
    border: none;
    background-color: rgba(250, 250, 250, .1);
    color: whitesmoke;
}

.caption {
    opacity: .8;
}

#waypicking {
    color: lightblue;
}

#remove {
    color: lightcoral;
}

ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
}

ul li {
    padding: .5rem 0;
}

ul strong {
    display: inline-block;
    background-color: rgba(250, 250, 250, .1);
    padding: .5rem;
    border-radius: .5rem;
    font-size: .8rem;
}

small {
    display: block;
    margin: .5rem 0;
    opacity: .75;
}

.trail {
    stroke-width: .5;
    fill: transparent;
    stroke-dasharray: 1 2;
}