.GanttEffortInput {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.GanttEffortInput-effortIcon {
    margin-right: var(--padding-xs);
}

.GanttEffortInput-hoursNumberInput,
.GanttEffortInput-minutesNumberInput {
    margin-right: var(--padding-xxs);
}

.GanttEffortInput-hoursNumberInput,
.GanttEffortInput-minutesNumberInput,
.GanttEffortInput-percentageNumberInput {
    width: 104px;
    flex-grow: 1;
}

/* AA - it would be nice if we didn't have to use !important here in "new" Vue component */
/* stylelint-disable selector-id-pattern */
input#GanttEffortInput-hoursNumberInput,
input#GanttEffortInput-minutesNumberInput,
input#GanttEffortInput-percentageNumberInput {
    padding-right: 0 !important; /* This !important is to override a deeply buried bootstrap !important for this specific case */
}
/* stylelint-enable selector-id-pattern */

.GanttEffortInput-conflict > input {
    background-position: right calc(0.375em + 0.1875rem) center;
    border-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
}

.GanttEffortInput-error {
    display: flex;
    padding-left: var(--padding-lg);
}
