textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid #bdcad9;
  border-radius: 9px;
  padding: .7rem;
  background: #fff;
  font: inherit;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(560px, 1.5fr);
  gap: 1rem;
  align-items: start;
}

.special-note {
  margin-top: .45rem;
  padding: .55rem .7rem;
  border-left: 4px solid #9a5b00;
  border-radius: 7px;
  background: #fff5e5;
  color: #744500;
  max-width: 360px;
  white-space: normal;
}

.message-blocked {
  border-left-color: #b42318;
  background: #fcebec;
  color: #8d1912;
}

.message-box {
  white-space: pre-wrap;
  min-height: 130px;
  padding: 1rem;
  border-radius: 10px;
  background: #f5f8fc;
  border: 1px solid #dce5ef;
  font: inherit;
  line-height: 1.5;
}

.template-preview {
  background: #f7f9fc;
  box-shadow: none;
}

.template-preview p {
  white-space: pre-wrap;
  margin-bottom: 0;
}

.tag.special {
  background: #e9e3ff;
  color: #5b35a5;
}

.tag.blocked {
  background: #fcebec;
  color: #b42318;
}

@media (max-width: 1050px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}
