body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: ghostwhite;
    padding: 2rem;
}


#header-container {
    display: flex;
}

#date-header {
    flex: 1;
    font-size: 1.2rem;
    align-self: center;
    justify-content: center;
}

#main-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 0.3rem;
}

#map-container {
    /* align-self: center;  */
}

#location-header {
    display: inline;
    line-height: 2rem;
    flex: 1;
}


#japan-map {
    float: right;
    border: 1px solid #ccc;
}

path {
    fill: #cccccc55;
    stroke: #666;
    stroke-width: 0.5;
}

path:hover {
    fill: #cccccccc;
}

path.selected {
    fill: goldenrod;
}

#reset {
    position: absolute;
    padding: 1rem;
    border-radius: 3px;
    border: solid 1px #666;
    box-shadow: 2px 2px 2px #ccc;
}

#reset:hover {
    background-color: #cccccc;
}


/* Calendar Rules */
#calendar-container {
    flex-grow: 1;
}

#calendar-container h3 {
}

#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 0.3rem;
}

.calendar-day {
    background-color: #eee;
    border: 1px solid #ccc;
    height: 4rem;
    max-width: 8rem;
    min-width: 2rem;
    text-align: right;
    padding-right: 0.2rem;
}



