#myDateForm {
    margin: 1em 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: stretch;
}

#myDateForm * {
    height: 50px;
}

#myDateForm label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 1em;
    font-weight: bold;
    font-size: 1rem;
}

input[type=date]:focus {
    outline: none;
}

.info_table {
    max-width: 80%;
}

#solsys {
    width: min(100%, 720px);
    padding-bottom: 1em;
}

.planet-line {
    display: inline-block;
}

.planet-line::before {
    content: "";
    display: inline-block;
    position: relative;
    top: -0.05em;
    margin-right: 0.4em;
    width: 10px;
    height: 10px;
    background: var(--planet-before-bg, #eee);
    vertical-align: middle;
    margin-left: 1em;
    border-radius: 50%;
}


.hide {
    display: none;
}

.modal {
    display: none;
    position: absolute;
    z-index: 1;
    left: 150px;
    right: 0;
    width: 210px;
    overflow: auto;
    background-color: rgba(120,120,120,0.4);
    line-height: 1.2em;
    padding: 0.5em;
    font-size: 9pt;
    border-radius: 5px;
}

#starmap_link {
    max-width: fit-content;
    max-height: 120;
    box-shadow: 0px 0px 3px 3px gray;
    border-radius: 50%;
    margin: 0 0 2em 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

#starmap_link:hover > .hide {
    display: grid;
}