#ganttOut .p6-left.p6-act-row .p6-c-name,
#ganttOut .p6-left.p6-act-row .p6-c-dur {
  cursor: text;
}

#ganttOut .p6-left.p6-act-row .p6-c-name:hover,
#ganttOut .p6-left.p6-act-row .p6-c-dur:hover {
  background: rgba(249, 238, 205, 0.34) !important;
  box-shadow: inset 0 0 0 1px rgba(184, 145, 63, 0.55);
}

#ganttOut .p6-cell.is-inline-editing {
  align-items: center;
  display: flex;
  overflow: visible !important;
  padding: 2px 5px !important;
  position: relative;
  z-index: 40;
}

#ganttOut .gantt-inline-edit-input {
  background: #fffaf0;
  border: 1px solid #b8913f;
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(184, 145, 63, 0.16);
  color: #1f1c15;
  font: 700 12px/1.15 inherit;
  height: 24px;
  min-width: 48px;
  outline: none;
  padding: 0 8px;
  width: 100%;
}

#ganttOut .p6-c-dur .gantt-inline-edit-input {
  text-align: center;
}

#ganttInlineEditToast {
  background: #202419;
  border: 1px solid rgba(212, 165, 58, 0.55);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: #fff8e8;
  font: 800 12px/1.2 var(--font-body, system-ui, sans-serif);
  letter-spacing: 0.02em;
  opacity: 0;
  padding: 10px 13px;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 9999;
}

#ganttInlineEditToast.is-on {
  opacity: 1;
  transform: translateY(0);
}

#ganttInlineEditToast.is-bad {
  background: #361818;
  border-color: rgba(196, 88, 88, 0.72);
}
