.modal-header,
.modal-body {
    border-bottom: 1px solid #ebebeb;
}
.sub-task-icon {
    font-size: 20px;
    color: #727cf5;
    cursor: pointer;
}
.entries {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.entries .form-control {
    width: 200px;
}
.entries .form-select {
    width: 80px;
}
.entries p {
    margin: 0;
}
.table td {
    padding: 5px 10px;
}
.task-item-wrapper {
    border: 1px solid var(--bs-blue);
    /* border: 1px solid #ddd; */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.task-item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.task-item-heading .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.task-item-heading .user-info img {
    width: 40px;
    border-radius: 30px;
}
.task-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.task-right p {
    margin: 0;
}
.task-right .edit-icon {
    color: var(--bs-blue);
    cursor: pointer;
}
.task-right .cal-icon {
    font-size: 20px;
    margin-right: 5px;
}
.task-right .delete-icon {
    color: var(--bs-danger);
    cursor: pointer;
}
.task-right .add-icon {
    cursor: pointer;
    color: var(--bs-green);
}
.task-right .num {
    background-color: var(--bs-yellow);
    width: 25px;
    height: 25px;
    border-radius: 30px;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    color: white;
    font-size: 12px;
}
.task-item-content {
    border: 1px solid #ededed;
    margin: 5px 0;
    border-radius: 5px;
    padding: 15px 10px 10px;
}
.task-item-content p,
.task-item-content h4 {
    margin: 0;
}
.task-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.task-item-footer .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.task-item-footer .user-info img {
    width: 40px;
    border-radius: 30px;
}
.profile_card {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
        rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    text-align: center;
    position: relative;
    width: 100%;
}
.profile_card .profile_card_img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 25px auto 0;
}
.profile_card .profile_card_label {
    font-size: 10px;
    font-weight: bold;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    width: fit-content;
    padding: 2px 5px;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
}
.profile_card_content h4 {
    margin: 15px 0 0 0;
    font-size: 16px;
}
.profile_card_content p {
    margin: 0;
    font-size: 14px;
}