.boat-listing-container {
    max-width: 1600px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.boat-list-filter-container {
    position: relative;
    width: fit-content;
    top:-80px;
    left:50%;
    transform: translate(-50%,-50%);
    background-color: var(--white);
    border-radius: 1rem;
    z-index: 1;
    box-shadow: 0 0 6px 2px rgba(0,0,0,.5);
}

.boat-list-item-container {
    margin-top: -80px;
    align-items: center;
    justify-content: center;
}

.filter-box {
    border: 1px solid var(--secondaryDarkClr);
    border-radius: .5rem;
}
.filter-box select {
    min-width: 250px;
    border: none;
}
#course-date-filter {
    border: none;
}

.boat-list-item {
    height: fit-content;
}

.list-img-holder {
    height: 100%;
}

.list-img-holder img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
}