.user-option {
    position: relative;
    padding-right: 30px;
}

.header-right {
    margin-left: auto;
}

.user-option .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-option .user-info .img-wrap {
    width: 38px;
    height: 38px;
}

.user-option .user-info .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 100%;
}

.user-option .user-info .text-wrap {}

.user-option .user-info .text-wrap h5 {margin: 0;font-size: 14px;}

.user-option .user-info .text-wrap h6 {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}

.user-option .dropdown-toggle:after {
 position: absolute;
 top: 50%;
 right: 0;
}

.sidebar-divider {
    border-top: 1px solid #d6d6d6;
    margin: 10px 5px;
}


.project-info-bar {
    padding: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


.project-info-bar .item-list {
    display: flex;
    gap: 10px;
    align-items: baseline;
    background: #f3f3f3;
    padding: 20px;
    border-radius: 6px;
    min-width: 200px;
    max-width: 100%;
    flex: 1;
}

.project-info-bar .item-list p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 700;
}


.project-info-bar .item-list h6 {
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-bg-hover);
    display: inline-block;
    border-radius: 100%;
}

.recent-activities-list {}

.recent-activities-list .item-list {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.recent-activities-list .item-list h4 {
    width: 80px;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
}

.recent-activities-list .item-list .task-status {
    width: calc(100% - 170px);
}

.recent-activities-list .item-list .task-status h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.recent-activities-list .item-list .task-status p {
    margin: 0;
}
.recent-activities-list .item-list .image-wrap {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}

.recent-activities-list .item-list .image-wrap  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-activities-list .item-list .recent-time {
    margin-left: auto;
}

#chart-container {
    width: 50%;
    margin: auto;
}
.chart-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
    color: #fff;
}

@media only screen and (max-width: 800px) {
    
    /* Force table to not be like tables anymore */
    .responsive-card-table table, 
    .responsive-card-table thead, 
    .responsive-card-table tbody, 
    .responsive-card-table th, 
    .responsive-card-table td, 
    .responsive-card-table tr { 
        display: block; 
    }
 
    /* Hide table headers (but not display: none;, for accessibility) */
    .responsive-card-table thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
 
    .responsive-card-table tr { 
        padding: 10px;
        border: 0px solid #ccc; 
    }
 
    .responsive-card-table td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        padding-left: 50% !important; 
        white-space: normal;
        text-align:left;
    }
 
    .responsive-card-table td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align:left;
        font-weight: bold;
    }
 
    /*
    Label the data
    */
    .responsive-card-table td:before { content: attr(data-title); }

    .responsive-card-table tr:nth-child(even) {
        background: #e9e9e9;
    }

    .responsive-card-table td:last-child {
        border: 0;
    }
}

