.open-modal {
    cursor: pointer;
}

dialog {
    margin: auto;
    max-width: 700px;
    min-width: 50vw;
    padding: 1rem;
    background-color: var(--offwhite);
    border-color: var(--primary);
    border-radius: 10px;
}

dialog#modal>span:first-child {
    position: absolute;
    z-index: -1;
}

dialog .container>* {
    background-color: var(--offwhite);
}

dialog::backdrop {
    background-color: #fffa;
}

dialog>footer {
    display: flex;
    justify-content: flex-end;
}

dialog button {
    border: none;
    font-weight: 700;
    background-color: #fffa;
    padding: 0.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: white;
    text-transform: uppercase;
    cursor: pointer;
}

#world-map {
    margin-bottom: 0.5rem;
}

#map-layer-list {
    display: none;
}

#map-layer-list>p {
    font-size: 1.2rem;
}

#map-layer-list li {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 0.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

#map-layer-list li:hover {
    color: var(--highlight);
}

#info-why-header {
    margin: 1rem 0 0.25rem 0;
}

.info-why-entry {
    margin: 0.25rem 0;
}