.user-management {
    .card-body {
        border-radius: 15px;
    }

    .blog-tags {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: column;

        .tags-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            width: 55px;
            height: 55px;
            border-radius: 10px;
            flex-shrink: 0;

            i::before {
                width: 30px;
                height: 30px;
                font-size: 30px;
                color: #1F58C7;
            }
        }

        .tag-details {
            text-align: center;

            h2 {
                color: #fff;
                margin-bottom: 10px;
            }

            p {
                font-size: 20px;
            }

            p:last-child {
                margin-bottom: 0;
                color: #fff;
            }
        }
    }
}

.card .card-header {
    background-color: #fff;
    padding: 16px 24px;
    border-bottom: 1px dashed rgba(106,113,133,.3);
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    position: relative;

    h4 {
        text-transform: capitalize;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .6px;
}

.total-user {
    min-width: 95px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    margin-right: 10px;

    h5 {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box !important;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        white-space: normal;
        width: 85px;
        text-align: center;
        font-size: 14px;
    }

    span {
        color: #1F58C7;
        font-size: 20px;
        font-weight: 600;
    }
}

.bg-light-primary {
    background-color: #EEF3FD !important;
    color: #fff;
}

.btn-light1-primary {
    background-color: #EEF3FD !important;
}

.b-r-15 {
    border-radius: 15px !important;
}

.upcoming-box {
    padding: 14px 0;
    text-align: center;

    .upcoming-icon {
        height: 50px;
        width: 50px;
        margin: 0 auto 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    p {
        font-size: 18px;
        font-weight: 600;
    }

    i {
        font-size: 30px;
        color: #FFFFFF;
    }

    a.btn {
        padding: 5px 10px;
        border-radius: 5px;
    }
}

.dropdown-content {
    background: #F6F7FB;
    padding: 10px;
    border: 2px solid #EEEEEE;

    .container {
        max-width: 100%;
        width: 100%;
        margin: auto;
    }
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #CCCCCC;
    }
    .tabs {
        display: flex;
        gap: 10px;
    }
    .tabs button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px 20px;
        font-size: 16px;
        border-bottom: 2px solid transparent;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .tabs button.active {
        background: #1c4fb3;
        color: #FFF;
    }
    .comment-box {
        padding: 15px;
        border-radius: 5px;
    }
    textarea {
        width: 100%;
        height: 100px;
        padding: 10px;
    }
    .empty-state {
        text-align: center;
        margin-top: 30px;
        color: #777;
    }

    .workflow_comments {
        p {
            margin-bottom: 0;
        }


        p:first-of-type {
            margin-top: 10px;
        }
    }
}