label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 650;
}
input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: var(--text-color);
}
textarea {
  resize: vertical;
}
.checkbox {
  display: flex;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  gap: 9px;
}
.checkbox input {
  width: 18px;
  min-height: 18px;
}
.page-heading {
  padding: 42px 0 30px;
}
.page-heading h1 {
  margin: 6px 0 10px;
}
.page-heading p {
  max-width: 800px;
  color: var(--muted-text-color);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  padding-top: 20px;
  color: var(--muted-text-color);
  font-size: 0.88rem;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.pagination a,
.pagination strong {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
}
.pagination strong {
  background: var(--primary-color);
  color: #fff;
}
.confirm-dialog {
  width: min(440px, calc(100% - 32px));
  border: 0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.confirm-dialog::backdrop {
  background: rgba(15, 23, 42, 0.55);
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.toast-region {
  position: fixed;
  right: 20px;
  top: 82px;
  z-index: 200;
}
.toast {
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  border-radius: 9px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}
.toast.error {
  background: #991b1b;
}
.table-wrap,
.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #fff;
}
th,
td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}
th {
  background: #f8fafc;
  color: #334155;
  font-size: 0.86rem;
}
.source-box {
  border-left: 4px solid var(--primary-color);
  background: #f8fafc;
  padding: 20px;
  margin-top: 32px;
}
.faq-list details {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 750;
}
.faq-list details div {
  padding-top: 10px;
  color: #475569;
}
