body {
    background-color: var(----wisp-green-100);
    display: flex;
    padding: 15px 15px 90px 15px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
}

header {
    display: flex;
    padding: 15px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

header h4,
.filters p {
    color: var(--wisp-white);
}

.filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.filter-element {
    display: flex;
    align-items: center;
    gap: 6px;
}

.report-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    width: 100%;
}

.report-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}

.report {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 15px;
    gap: 10px;
    align-self: stretch;
    background: var(--wisp-white);
    box-shadow: 0px 4px 4px 0px rgba(27, 27, 33, 0.25);
    flex-grow: 1;
    min-width: 210px;
    max-width: 450px;
}

.white-title {
    color: var(--wisp-white);
}

.report .title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.report .status {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50vh;
    background: url('../img/illustrations/wavy-background-green.svg') no-repeat top center;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

@media screen and (min-width: 480px) {
    .report {
        padding: 20px;

    }

    .report-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: stretch;
        gap: 15px;
    }
}

@media screen and (min-width: 769px) {
    .report {
        max-width: none;
    }
}

@media screen and (min-width: 1050px) {
    .report {
        min-width: 400px;
    }
}