.od-cm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.od-cm-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  padding: 7px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.od-cm-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
}

.od-cm-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.od-cm-btn.is-on {
  border-color: rgba(120,255,190,0.22);
  background: rgba(120,255,190,0.10);
  color: rgba(215,255,235,0.92);
}

.od-cm-btn.primary {
  border-color: rgba(120,200,255,0.22);
  background: rgba(120,200,255,0.10);
}

.od-cm-btn.danger {
  border-color: rgba(255,120,120,0.22);
  background: rgba(255,120,120,0.10);
}

.od-cm-btn.warn {
  border-color: rgba(255,200,120,0.22);
  background: rgba(255,200,120,0.10);
}

.od-replies {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.10);
  display: grid;
  gap: 10px;
}

.od-reply {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
}

.od-reply-top {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.od-reply-top b {
  font-weight: 800;
}

.od-reply-top span {
  opacity: 0.72;
  font-size: 12px;
}

.od-reply p {
  margin: 0;
  opacity: 0.92;
}

.od-reply-formWrap {
  margin-top: 10px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px;
}

.od-reply-ta {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  outline: none;
  resize: vertical;
}

.od-reply-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
