#mainImg
{
    max-height: 450px;
    display: block;
    max-width: calc(100% - 10px);
    margin: auto;
    /* padding: 0 5px; */
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
    border-radius: 0 0 8px 8px;
}
body
{
    /* background-color: #FEF9c7; */
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
a
{
    text-decoration: none;
    color: black;
}
.listDiv 
{
    background-color: #9FEDD7;
    position: absolute;
    padding-top: 20px;
    margin: 0;
    padding-bottom: 20px;
    padding-right: 20px;
    border-radius: 0 0 30px 0;
    /* border: 2px solid #EDEAE5; */
    border: 2px solid #026670;
    border-top: 0;
    border-left: 0;
    list-style-image: url("bee25.png");
}
.mainBody
{
    /* background-color: #FCE181; */

    background-color: #fef9c7;
    max-width: min(1137px, 90%);
    margin: 20px auto 10px;
    padding: 15px;
    border-radius: 20px;
    border: 3px solid #FCE181;
    box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
}
footer
{
    background-color: #EDEAE5;
}
nav
{
    position: relative;
}
nav h1
{
    background-color: #026670;
    padding: 10px;
    text-align: center;
    margin: 0;
    min-height: 40px;
    /* border-bottom: 2px solid #EDEAE5; */
}
nav h1 a
{
    color: white;
    line-height: 40px;
}

.listDiv li:hover 
{
    /* background-color: #bdffec; */
    text-decoration: underline;
    font-weight: bold;
}
table, tr, th, td
{
    border-collapse: collapse;
    padding: 5px;
}
th, td
{
    border: 2px solid black;
}
td, th
{
    text-align: center;
}
th:first-child
{
    text-align: left;
}
form, form div
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}
.flex-row, .flex-row div
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.flex-row div
{
    gap: 1px;
}
hr
{
    border: 1px solid gray;
    width: 100%;
    margin: 2px;
}
#dateFromTo
{
    width: fit-content;
    background-color: white;
    padding: 3px;
    border-radius: 8px;
    border: 1px solid gray;
}
#dateFromTo input
{
    border: none;
}
@media only screen and (max-width: 768px) {
    .listDiv
    {
        max-width: 100%;
        border-right: none;
        border-radius: 0;
    }
}