.tasksAutofillPopup{
    position: fixed;
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
    border: 2px solid #c7c7c7;
    border-radius: 4px;
    padding: 4px 0px;
    z-index: 25;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.tasksAutofillPopup .task{
    position: relative;
    padding: 6px 12px 6px 24px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.tasksAutofillPopup .task:last-child{
    border-bottom: none;
}
.tasksAutofillPopup .task.selected{
    background: #eaf3f8;
}
.tasksAutofillPopup .task.dimmed{
    opacity: 0.5;
}
.tasksAutofillPopup .task .info{
    float: none;
}
.tasksAutofillPopup .task .info.statusDot{
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #c5c5c5;
}
.tasksAutofillPopup .task .info.taskName{
    flex: 1;
    min-width: 0;
    margin-right: 12px;
    font-size: 14px;
    line-height: 1.3;
    word-break: break-word;
}
.tasksAutofillPopup .task .info.taskHours{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.tasksAutofillPopup .task .info.taskHours .progressBarHolder{
    width: 80px;
    height: 8px;
    background: #00000017;
    border-radius: 2px;
    overflow: hidden;
}
.tasksAutofillPopup .task .info.taskHours .progressBarHolder.overBudget{
    background: var(--overBudgetColor);
}
.tasksAutofillPopup .task .info.taskHours .progressBarHolder .meter{
    height: 100%;
    background: var(--trackrDarkBlueColor);
}
.tasksAutofillPopup .task .info.taskHours .hoursLabel{
    font-size: 12px;
    color: var(--trackrDarkBlueColor);
    min-width: 60px;
    text-align: right;
}
