.msc-composer {
  display: flex;
  gap: 9px;
  padding: 12px 14px 10px;
  border-top: 1px solid var(--msc-border);
  background: rgba(255, 255, 255, 0.95);
}

.msc-composer input {
  min-width: 0;
  min-height: 44px;
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  outline: none;
  color: var(--msc-ink);
  background: #f8fafc;
  font-family: var(--msc-font);
  font-size: 13px;
}

.msc-composer input:focus {
  border-color: rgba(0, 92, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(0, 92, 255, 0.08);
}

.msc-composer button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--msc-white);
  background: var(--msc-gradient);
  box-shadow: 0 10px 24px rgba(0, 92, 255, 0.22);
  cursor: pointer;
}

.msc-composer button svg {
  width: 20px;
  height: 20px;
}

.msc-composer button:disabled,
.msc-composer input:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.msc-privacy-note {
  margin: 0;
  padding: 0 18px 12px;
  color: #89919e;
  background: rgba(255, 255, 255, 0.95);
  font-size: 10px;
  line-height: 1.4;
}

.msc-privacy-note a {
  color: #4e65a0;
}
