.view-user-main-section .profile-container {
    background: transparent linear-gradient(180deg, #1F1F8E 0%, #6229B4 100%) 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 0px 11px #313131;
    border: 1px solid #53525D;
    opacity: 1;
}

.view-user-main-section .profile-container .inner-div {
    padding: 35px 25px;
}



.view-user-main-section .profile-container .inner-div .logo-container {
    border-radius: 50%;
    /* This makes the container circular */
    overflow: hidden;
    /* Ensures the image stays inside the circle */
    display: flex;
    /* To center the image */
    justify-content: center;
    /* Center the image horizontally */
    align-items: center;
    /* Center the image vertically */
    background-color: #f0f0f0;
    /* Optional: background color */
    border: 5px solid black;
    aspect-ratio: 1 / 1;
    width: 80%;
    margin-top: -5px;
}

.view-user-main-section .profile-container .inner-div .logo-container img {
    width: 100%;
    /* Image will take the full width of the container */
    height: 100%;
    /* Ensures the image fills the container */
    object-fit: cover;
    /* Keeps the image aspect ratio while filling the container */
}


.view-user-main-section .profile-container .inner-div .head-content {
    margin-top: 20px;
}

.view-user-main-section .profile-container .inner-div .head-content .heading-title {
    text-align: left;
    font: normal normal normal 38px/24px Roboto;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.view-user-main-section .profile-container .inner-div .head-content .contact-div {
    display: flex;
    justify-content: end;
}

.view-user-main-section .profile-container .inner-div .head-content label {
    color: #FFFFFF;
    margin-right: 6px;
    font-size: 15px;
}


.view-user-main-section .profile-container .inner-div .stats-content {
    /* background: #8f53d6; */
    border-radius: 6px;
    opacity: 1;
    backdrop-filter: blur(32px);
    margin-top: 20px;
    padding: 14px 5px;
    background: transparent linear-gradient(180deg, #724dd2 60%, #8751e0 100%) 0% 0% no-repeat padding-box;
}
.view-user-main-section .profile-container .inner-div .stats-content .card-holder {
    padding: 2px 20px 10px;
}

.view-user-main-section .profile-container .inner-div .stats-content .card-holder.border-right{
    border-right: 5px solid #5d33bb;
}

.view-user-main-section .profile-container .inner-div .stats-content .card-holder .count-container label{
    font-size: 40px;
    color: white;

}

.view-user-main-section .profile-container .inner-div .stats-content .card-holder .text-container label{
    color: white;
    margin-top: 6px;
    font-size: 19px;
}


.view-user-main-section .tab-container {
    margin-top: 2%;
}



.view-user-main-section .tab-container .nav-tabs {
    display: unset;
}

.view-user-main-section .tab-container .nav-tabs .nav-item {
    display: unset;
}

.view-user-main-section .tab-container .nav-tabs .nav-item .nav-link {
    background: #141414 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 0px 11px #313131;
    border: 1px solid #53525D;
    width: 100%;
    border-radius: 0px;
    color: white;
    box-shadow: none;

}

.view-user-main-section .tab-container .nav-tabs .nav-item .nav-link.active {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #53525D;
    opacity: 1;
    width: 100%;
    border-radius: 0px;
    color: black;
    box-shadow: none;
}




.view-user-main-section .tab-container .tab-content {
    border-bottom: 1px solid #53525D;
}

.view-user-main-section .tab-container .tab-content .tab-holder {

    background: #141414 0% 0% no-repeat padding-box;
    border: 1px solid #53525D;
    opacity: 0.31;

    color: white;
    /* Default text color */
    opacity: 1;
    text-align: center;
    padding: 6px;
    cursor: pointer;
    /* Make tabs look clickable */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth transition */
}

/* Style for the active tab */
.view-user-main-section .tab-container .tab-content .tab-holder.active {
    background-color: #FFFFFF;
    /* Active background color */
    color: black;
    /* Active text color */
    border: 1px solid #53525D;
}


.view-user-main-section .table-container {
    margin-top: 20px;
}

.view-user-main-section .table-container .table-holder {
    background: #14141B 0% 0% no-repeat padding-box;
    border-radius: 6px;
    padding: 10px;
}

.view-user-main-section .table-container .table-holder table {}

.view-user-main-section .table-container .table-holder table thead th {
    background: #000000 0% 0% no-repeat padding-box;
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    border-right: 1px solid white;
}


.view-user-main-section .table-container .table-holder table thead th:last-child {
    border-right: none;
}


.view-user-main-section .table-container .table-holder table tbody td {
    background: #14141B 0% 0% no-repeat padding-box;
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    border-right: 1px solid white;


}

.view-user-main-section .table-container .table-holder table tbody td:last-child {
    border-right: none;
}


@media (min-width: 0px) and (max-width: 379px) {}

@media (min-width: 380px) and (max-width: 419px) {}

@media (min-width: 420px) and (max-width: 485px) {
    .view-user-main-section .profile-container .inner-div .head-content .heading-title {
        font-size: 26px;
    }

    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder {
        padding: 2px 0px 10px;
        backdrop-filter: blur(35px);
        border-right: 3px solid #141414;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link.active {
        font-size: 12px;
        padding: 5px;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link {
        font-size: 12px;
        padding: 5px;
    }

 
    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .tab-container .tab-content .tab-holder {
        font-size: 14px;
    }
    .view-user-main-section .profile-container .inner-div .logo-container {
        width: 100%;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .text-container label {
        color: white;
        margin-top: 6px;
        font-size: 13px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .count-container label {
        font-size: 34px;
        color: white;
    }
}

@media (min-width: 486px) and (max-width: 539px) {
    .view-user-main-section .profile-container .inner-div .head-content .heading-title {
        font-size: 26px;
    }

    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder {
        padding: 2px 0px 10px;
        backdrop-filter: blur(35px);
        border-right: 3px solid #141414;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link.active {
        font-size: 12px;
        padding: 5px;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link {
        font-size: 12px;
        padding: 5px;
    }

 
    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .tab-container .tab-content .tab-holder {
        font-size: 14px;
    }
    .view-user-main-section .profile-container .inner-div .logo-container {
        width: 100%;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .text-container label {
        color: white;
        margin-top: 6px;
        font-size: 13px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .count-container label {
        font-size: 34px;
        color: white;
    }
}

@media (min-width: 540px) and (max-width: 767px) {
    .view-user-main-section .profile-container .inner-div .head-content .heading-title {
        font-size: 26px;
    }

    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder {
        padding: 2px 0px 10px;
        backdrop-filter: blur(35px);
        border-right: 3px solid #141414;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link.active {
        font-size: 12px;
        padding: 5px;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link {
        font-size: 12px;
        padding: 5px;
    }

 
    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .tab-container .tab-content .tab-holder {
        font-size: 14px;
    }
    .view-user-main-section .profile-container .inner-div .logo-container {
        width: 100%;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .text-container label {
        color: white;
        margin-top: 6px;
        font-size: 13px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .count-container label {
        font-size: 34px;
        color: white;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .view-user-main-section .profile-container .inner-div .head-content .heading-title {
        font-size: 26px;
    }

    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder {
        padding: 2px 0px 10px;
        backdrop-filter: blur(35px);
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link.active {
        font-size: 12px;
        padding: 5px;
    }

    .view-user-main-section .tab-container .nav-tabs .nav-item .nav-link {
        font-size: 12px;
        padding: 5px;
    }

 
    .view-user-main-section .profile-container .inner-div .head-content label {
        font-size: 11px;
    }

    .view-user-main-section .tab-container .tab-content .tab-holder {
        font-size: 14px;
    }
    .view-user-main-section .profile-container .inner-div .logo-container {
        width: 100%;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .text-container label {
        color: white;
        margin-top: 6px;
        font-size: 13px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .count-container label {
        font-size: 34px;
        color: white;
    }
}

@media (min-width: 992px) and (max-width: 1450px) {
    .view-user-main-section .profile-container .inner-div .head-content .heading-title {
        font-size: 30px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder {
        padding: 2px 10px 10px;
        backdrop-filter: blur(35px);
    }

    .view-user-main-section .profile-container .inner-div .logo-container {
        width: 100%;
        margin-top: 0px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .text-container label {
        color: white;
        margin-top: 6px;
        font-size: 13px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content .card-holder .count-container label {
        font-size: 34px;
        color: white;
    }

    .view-user-main-section .profile-container .inner-div {
        padding: 20px 25px;
    }

    .view-user-main-section .profile-container .inner-div .stats-content {
        border-radius: 6px;
        opacity: 1;
        backdrop-filter: blur(35px);
        margin-top: 20px;
        padding: 5px 5px;
    }

  
}