.report-holder{
    display: flex;
    position: relative;
    align-items: center;
    box-shadow: var(--darkBoxShadow);
    margin: -2% auto 3% auto;
    width: 100%;
    border-radius: 20px;
}

.report-left-holder{
    width: 32%;
    display: flex;
    align-items: center;
    border-right: 2px solid #eee;
    padding: 20px 15px;
}

.report-prof-pic{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-right: 15px;
}

.report-username{
    font-weight: 600;
    font-size: 115%;
    display: flex;
    align-items: center;
}

.verified-badge {
    width: 18px;
    margin-left: 5px;
}

.report-prof-details{
    display: flex;
    text-align: center;
    margin: 12px 0;
}

.report-prof-detail{
    min-width: 70px;
    margin: 0 10px 0 0;
}

.report-prof-num{
    font-weight: 600;
    font-size: 105%;
}

.report-prof-title{
    color: gray;
    font-size: 85%;
}

.report-btn{
    background: var(--gradientText);
    background-color: var(--black);
    color: white;
    padding: 10px 0;
}

.report-right-holder{
    width: 65%;
}

.report-nums-holder{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    width: 100%;
}

.report-img{
    width: 22px;
    margin-bottom: 2px;
    opacity: 0.6;
}

.report-num{
    font-size: 210%;
    font-weight: 600;
}

.report-title{
    color: gray;
    margin-top: 8px;
}

.loading-screen{
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(140, 140, 140, 0.85);
    z-index: 999;
    border-radius: 8px;
}

.loading-img{
    color: white;
    font-size: 200%;
}

.loading-txt{
    text-align: center;
    margin-top: 20px;
    color: white;
}

.delete-report-holder{
    width: 100%; 
    display: flex; 
    justify-content: end;
}

.js-delete-report{
    background-color: red;
    color: white; 
    padding: 12px 20px; 
    border-radius: 0px !important; 
    width: 160px;
}

@media only screen and (max-width: 1000px) {
    .report-holder{
        flex-direction: column;
        width: calc(100% - 20px);
        margin: 9% auto;
        padding: 18px 10px;
    }

    .report-left-holder{
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .report-prof-pic {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .report-prof-details {
        margin: 9px 0;
    }

    .report-right-holder{
        width: 100%;
    }

    .report-nums-holder{
        justify-content: space-between;
    }

    .report-img {
        width: 16px;
    }

    .report-num{
        font-size: 145%;
    }

    .report-title {
        font-size: 80%;
    }

    .report-btn {
        padding: 7px 0;
    }

}