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

.report-left-holder{
    width: 34%;
    border-right: 2px solid #eee;
    padding: 20px 0px;
}

.report-profile-holder{
    display: flex;
    align-items: center;
    padding: 0px 15px 10px 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-nums-holder{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    margin-top: 20px;
    border-top: 2px solid #eee;
    padding: 25px 10px 10px 10px;
}

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

.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;
}

.report-right-holder{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.report-num-holder {
    margin: 40px 0;
}

.report-num {
    font-size: 215%;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.report-circle {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    margin-left: 8px;
}

.sus-circle{
    background-color: #ffa8a8;
}

.real-circle{
    background-color: #9CFF9F;
}

.tooltip {
    color: gray;
    font-size: 135%;
}

.piechart {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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;
        border: none;
        padding: 0 10px;
        margin-top: 8px;
    }

    .report-img {
        width: 16px;
    }

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

    .report-num-holder {
        margin: 22px 0;
    }

    .report-num {
        font-size: 145%;
        margin-bottom: 6px;
    }

    .report-circle {
        width: 22px;
        height: 22px;
    }

    .tooltip {
        font-size: 95%;
    }

    .piechart {
        width: 150px;
        height: 150px;
    }
}