body {
    background-color: antiquewhite;
}

.sales-report {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.view-sales-report {
    min-height: 100%;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}

.sales-report .single-report:last-child {
    border-bottom: none;
}
