:root {
    --primary: #99AA3A;
}
.banner-wrapper {

}

#banner {
    width: calc(100% - 30px);
    height: 350px;
    margin-top: 75px;
    border-radius: 20px;
    /* background: url(/images/reports/reports-banner.png) center / cover no-repeat; */
    background: url("../images/reports/reports-banner.png") center / cover no-repeat;

    .banner-title {
        position: relative;
        width: fit-content;
        &:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            height: 5px;
            width: 100%;
            background-color: var(--primary);
        }
    }
}
#reportList {
    min-height: 300px;
}

.rounded-field {
    border-radius: 20px;
    
}

.text-primary {
    color: var(--primary) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.btn-secondary {
    background-color: #99aa3a !important;
    border: none !important;
}

.downloadBtn {
    border-radius: 50%;
}