#map {
    height: 60vh;
    min-height: 320px;
    max-height: 70vh;
    width: 100%;
    margin: 1.5em auto 1em auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px #ccc;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fa;
}

.container {
    max-width: 900px;
    margin: 2em auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #ccc;
    padding: 1.2em 1.2em 2em 1.2em;
}

h2 {
    text-align: center;
}

#date {
    display: block;
    font-size: 1.1em;
}

.date-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    gap: 0;
}

.date-nav button,
.date-nav input[type="date"] {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    border-radius: 0;
    border: 1px solid #bbb;
    box-sizing: border-box;
}

.date-nav button#prevDayBtn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-right: none;
    font-size: .95em;

}

.date-nav input[type="date"] {
    border-left: none;
    border-right: none;
    width: 9.5em;
    text-align: center;
}

.date-nav button#nextDayBtn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left: none;
    font-size: .95em;

}

.date-nav button:hover {
    background: #e0e0e0;
}