/* Admin Month Management inline task-name sizing.
   The task cell is a flex row (drag handle + title wrapper). Without an explicit
   flex-grow rule, the wrapper shrinks to the current title's intrinsic width,
   so the inline rename input can occupy only part of the Task column. */
#board .m11-task-name-cell > div {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}

#board .m11-task-name-cell .m11-row-handle {
    flex: 0 0 auto;
}

#board .m11-task-name-cell .m11-inline-task-title {
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}
