.reman-selection-bar {
  position: sticky;
  bottom: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-top: 1px solid #bcdadd;
  background: rgba(239, 250, 250, .97);
  box-shadow: 0 -8px 24px rgba(7, 35, 53, .08);
  backdrop-filter: blur(8px);
}

.reman-selection-bar.hidden { display: none; }
.reman-selection-summary strong,
.reman-selection-summary span { display: block; }
.reman-selection-summary strong { color: #173f48; font: 800 13px Manrope; }
.reman-selection-summary span { margin-top: 3px; color: #607680; font-size: 9px; }

.reman-destination {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #405d68;
  font-size: 9px;
  font-weight: 800;
}

.reman-destination input {
  width: 150px;
  height: 38px;
  border: 1px solid #b9d1d7;
  border-radius: 9px;
  background: #fff;
  padding: 0 10px;
  color: #26434f;
}

#remanExecuteFast {
  height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 9px;
  background: #128f91;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

#remanExecuteFast:disabled { opacity: .5; cursor: not-allowed; }
#remanExecute { display: none; }
.reman-table tbody tr { cursor: pointer; }
.reman-table tbody tr.selected td { background: #dff5f2; }
.reman-table tbody input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; }

@media(max-width:900px) {
  .reman-selection-bar { grid-template-columns: 1fr; }
  .reman-destination { justify-content: space-between; }
  #remanExecuteFast { width: 100%; }
}
