.sidetap-send-panel {
  max-width: 760px;
}

.sidetap-send-form {
  display: grid;
  gap: 15px;
}

.sidetap-send-form > label {
  display: grid;
  gap: 7px;
  color: #aab9ce;
  font-size: 13px;
}

.sidetap-send-form textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid #30405b;
  border-radius: 10px;
  background: #0c1320;
  color: #f5f8ff;
  padding: 12px;
  outline: none;
  font: inherit;
}

.sidetap-send-form textarea:focus {
  border-color: #3884ff;
  box-shadow: 0 0 0 3px #2675ff22;
}

.sidetap-line-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.sidetap-send-status,
.sidetap-send-result {
  min-height: 22px;
  color: #8fa2bf;
}

.sidetap-send-result.good { color: #65e6ac; }
.sidetap-send-result.bad { color: #ff7b8a; }
.sidetap-send-form button[type="submit"] { justify-self: start; min-width: 150px; }
.sidetap-send-form :disabled { opacity: .55; cursor: not-allowed; }

@media (max-width: 600px) {
  .sidetap-line-row { grid-template-columns: 1fr; }
  .sidetap-send-form button[type="submit"] { width: 100%; }
}
