.editor-tools {
  flex-wrap: wrap;
  gap: 12px;
}
.template-btn {
  border: 1px solid var(--green);
  color: var(--green);
  background: white;
  border-radius: 11px;
  padding: 11px 14px;
  font-weight: 850;
  cursor: pointer;
}
.admin-hall {
  background-color: #9b754d;
  background-image:
    repeating-linear-gradient(90deg, #00000009 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, #ffffff0a 0 2px, transparent 2px 46px);
  border: 10px solid #5e574d;
  box-shadow: inset 0 0 0 3px #292d2a;
}
.admin-hall .table {
  background: #d6ad6f;
  border-color: #8b683b;
  color: #4a341c;
}
.admin-hall .table.focus {
  outline-color: var(--lime);
}
.danger-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.danger-actions button {
  border: 1px solid #d9aaa0;
  background: #fff7f5;
  color: #9b3124;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.danger-actions button:disabled {
  opacity: .38;
  cursor: not-allowed;
}
.pdf-action {
  display: block;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}
.pdf-action.disabled {
  opacity: .35;
  pointer-events: none;
}
