body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#map {
    width: 100%;
    max-width: 800px;
    height: auto;
}

#info {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    min-height: 50px;
}

#calendar{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 70%;
}

.calendar-month{
    border: 1px solid #ccc;
    margin: 10px 0;
}

.calendar-day{
    text-align: center;
    padding: 3px;
}

.calendar-day-empty{
    border: none;
}

.calendar-day-weekend{
    background-color: #b3d1ff;
}

.legend-caption{
    margin-bottom: 15px;
}

.legend-item-label{
    padding: 0px 10px;
}

.legend-item-text{
    font-size: small;
}

.copyright{
    text-align: center;
    font-size: x-small;
}

@media screen and (width < 800px){
    #calendar-title{
        font-size: small;
    }

    #info{
        font-size: small;
    }

    .legend-caption{
        font-size: small;
    }

    .legend-item-label{
        padding: 0px;
    }

    .legend-item-text{
        font-size: smaller;
    }
}
