/* Custom Modern Styling Fixes */
    .user-profile-avatar {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border: 4px solid #fff;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    }

    .custom-pills .nav-link {
        /* border-radius: 10px; */
        color: #4c5258;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .custom-pills .nav-link:hover {
        background-color: #f8f9fa;
        color: #0d6efd;
    }

    .custom-pills .nav-link.active {
        background-color: #0d6efd !important;
        color: #fff !important;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    }

    .custom-pills .nav-link.active small {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.4rem;
    }

    .card-title-border {
        border-bottom: 2px solid #f0f2f5;
        padding-bottom: 0.75rem;
    }


    .activity-card{
    height: calc(100vh - 100px);
}

.activity-card{
    height: calc(100vh - 260px);
}

.timeline-list{
    height:100%;
    overflow-y:auto;
    padding: 10px 0px;
}

.timeline-item{
    display:flex;
    position:relative;
    padding-left:55px;
    margin-bottom:10px;
}

.timeline-item:last-child{
    margin-bottom:0;
}

.timeline-item::before{
    content:'';
    position:absolute;
    left:17px;
    top:35px;
    width:2px;
    height:calc(100% + 10px);
    background:#e9ecef;
}

.timeline-item:last-child::before{
    display:none;
}

.timeline-icon{
    position:absolute;
    left:0;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.timeline-content{
    background:#f8f9fa;
    border-radius:10px;
    padding:12px 15px;
    width:100%;
}

.timeline-list::-webkit-scrollbar{
    width:6px;
}

.timeline-list::-webkit-scrollbar-thumb{
    background:#bfbfbf;
    border-radius:10px;
}