
/* BPMS V2.0 MI1.7 - Project Schedule Row Edit */
#bpmsProgressEditor,
.bpms-progress-editor-card{
  display:none!important;
}

.bpms-row-editor{
  display:grid;
  grid-template-columns:220px 220px 1fr;
  gap:14px;
  align-items:end;
  background:#f8fbff;
  border:1px solid #dbe7ff;
  border-radius:14px;
  padding:16px;
  margin:8px 0;
}

.bpms-row-editor label{
  display:block;
  font-weight:900;
  color:#102a66;
  margin-bottom:6px;
}

.bpms-row-editor input,
.bpms-row-editor select,
.bpms-row-editor textarea{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:10px;
  padding:12px;
  font-size:16px;
}

.bpms-large-percent{
  height:52px;
  min-width:190px;
  font-size:20px!important;
  font-weight:900;
}

.bpms-row-editor textarea{
  min-height:94px;
  resize:vertical;
}

.bpms-row-editor .wide{
  grid-column:auto;
}

.bpms-row-editor .actions{
  grid-column:1/-1;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

@media(max-width:760px){
  .bpms-row-editor{
    grid-template-columns:1fr;
  }
  .bpms-large-percent{
    min-width:100%;
  }
  .bpms-row-editor .actions{
    justify-content:stretch;
  }
  .bpms-row-editor .actions button{
    flex:1;
  }
}
