:root {
  --bg: #f5f4f0;
  --border: #999;
  --border-dk: #121212;
  --text: #222;
  --text-mute: #555;
  --radius: 1px;
  --trans: 0.3s ease;
  --nav-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

body {
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--border-dk);
}

p, li, label, .form-text { color: var(--text-mute); }

code, pre, .font-mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.85em;
}

hr { border-color: var(--border); opacity: 0.3; }
a { color: var(--border-dk); }
a:hover { color: #000; }

.navbar {
  min-height: var(--nav-h);
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}

.navbar-brand {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 1rem;
  color: var(--border-dk) !important;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  gap: clamp(0.65rem, 2vw, 1.75rem);
  align-items: center;
  min-width: 0;
}

.nav-desktop .nav-link {
  color: var(--text-mute);
  font-family: 'DM Mono', monospace;
  font-size: clamp(0.70rem, 1.6vw, 0.85rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav-desktop .nav-link:hover,
.nav-desktop .nav-link.active {
  color: var(--border-dk);
  border-bottom-color: var(--border-dk);
}

.navbar-toggler {
  display: none;
  padding: 10px;
  background: none;
  cursor: pointer;
  border: 1px solid rgba(51, 51, 51, 0.25);
  border-radius: 6px;
}

.navbar-toggler:focus { box-shadow: none; outline: none; }

.ham-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  position: relative;
}

.ham-icon span {
  display: block;
  height: 1px;
  background: var(--border-dk);
  border-radius: 0;
  transition: transform var(--trans), opacity var(--trans), top var(--trans);
  position: absolute;
  width: 100%;
}

.ham-icon span:nth-child(1) { top: 0; }
.ham-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.ham-icon span:nth-child(3) { bottom: 0; }

.navbar-toggler[aria-expanded="true"] .ham-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .ham-icon span:nth-child(2) { opacity: 0; }

.navbar-toggler[aria-expanded="true"] .ham-icon span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.offcanvas {
  background-color: var(--bg);
  border: none;
  border-right: 1px solid var(--border);
}

.offcanvas-header { border-bottom: 1px solid var(--border); }

.offcanvas-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.88rem;
  color: var(--border-dk);
}

.offcanvas .list-group-item {
  background-color: var(--bg);
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 0 !important;
  color: var(--text-mute);
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
}

.offcanvas .list-group-item:hover,
.offcanvas .list-group-item:focus-within {
  background-color: #111;
  border-color: #333;
}

.offcanvas .list-group-item:hover a,
.offcanvas .list-group-item:focus-within a { color: var(--bg); }

.page-shell { min-height: calc(100vh - var(--nav-h)); }

.create-grid {
  display: grid;
  grid-template-columns: minmax(260px, 3fr) minmax(0, 7fr);
  min-height: calc(100vh - var(--nav-h));
}

.hero-panel,
.form-panel { padding: clamp(1.75rem, 4vw, 3.6rem) clamp(1.25rem, 3.2vw, 2rem); }

.hero-panel {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-eyebrow,
.section-label {
  font-family: 'DM Mono', monospace;
  /* font-size: 0.65rem; */
  font-size:calc(0.75rem + 2px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.section-label {
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.hero-panel h1 {
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  line-height: 1.04;
  margin: 1.1rem 0 1.25rem;
  max-width: 10ch;
}

.hero-panel p {
  font-size: 1rem;
  max-width: 34rem;
}

.hero-meta {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-panel {
  display: flex;
  align-items: stretch;
}

.form-panel > form,
.form-panel > .panel-box { width: 100%; }

.content-narrow {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
}

.demo-box,
.panel-box,
#createForm {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background-color: var(--bg);
}

.btn {
  border-radius: var(--radius);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 0.45rem 1.1rem;
  transition: background-color var(--trans), border-color var(--trans), color var(--trans);
}

.btn-primary {
  background-color: #333;
  border: 1px solid #333;
  color: var(--bg);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #222;
  border-color: #222;
  color: var(--bg);
}

.btn-primary:active {
  background-color: #111 !important;
  border-color: #111 !important;
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #222;
  color: #222;
  border-radius: var(--radius);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #333;
  border-color: #333;
  color: var(--bg);
}

.btn-outline-danger,
.btn-danger,
.btn-outline-secondary,
.btn-secondary {
  border-radius: var(--radius);
  border-width: 1px;
}

.card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--border-dk);
  font-weight: 500;
}

.card-footer {
  background-color: transparent;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-mute);
}

.card-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--border-dk);
}

.form-control,
.form-select {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--bg);
  border-color: var(--border-dk);
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
  color: var(--text);
}

.form-control::placeholder { color: #aaa; }

.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.35rem;
}

textarea.form-control {
  min-height: clamp(300px, 49vh, 560px);
  resize: vertical;
  line-height: 1.45;
}

.input-group-text {
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-mute);
}

.alert {
  border-radius: var(--radius);
  border-width: 1px;
  font-size: 0.875rem;
  border-style: solid;
}

.alert-primary {
  background-color: rgba(51, 51, 51, 0.06);
  border-color: var(--border);
  color: var(--border-dk);
}

.alert-secondary {
  background-color: rgba(136, 136, 136, 0.08);
  border-color: #bbb;
  color: #555;
}

.alert-warning,
.alert-danger,
.alert-success,
.alert-info { border-radius: var(--radius); }

.badge {
  border-radius: var(--radius);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.badge.bg-primary { background-color: #333 !important; }
.badge.bg-secondary { background-color: #444 !important; }

.list-group-item {
  background-color: var(--bg);
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 0 !important;
  color: var(--text-mute);
  font-size: 0.875rem;
}

.list-group-item:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
.list-group-item:last-child { border-radius: 0 0 var(--radius) var(--radius) !important; }

.list-group-item.active {
  background-color: var(--border-dk);
  border-color: var(--border-dk);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
}

.modal-content {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.modal-header { border-bottom: 1px solid var(--border); }
.modal-footer { border-top: 1px solid var(--border); }

.modal-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--border-dk);
}

.btn-close {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0.6;
}

.toast {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.result-url {
  font-family: 'DM Mono', monospace;
  word-break: break-all;
}

.paste-output { white-space: pre-wrap; }
.hcaptcha-slot:empty { display: none; }

footer {
  border-top: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
}


body.create-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body.create-page .navbar {
  height: var(--nav-h);
  min-height: var(--nav-h);
}

body.create-page .create-grid {
  width: 100vw;
  height: calc(100vh - var(--nav-h));
  min-height: 0;
  overflow: hidden;
}

body.create-page .hero-panel,
body.create-page .form-panel {
  min-height: 0;
  overflow: hidden;
}

body.create-page .form-panel {
  padding: clamp(0.75rem, 2vw, 1.5rem);
}

body.create-page #createForm {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  gap: clamp(0.45rem, 1.2vh, 1rem) !important;
}

body.create-page .text-area-field {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

body.create-page .text-area-field textarea {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  resize: none;
}

tx-lg{
	font-size:calc(0.65rem + 2px);
}
subhead{
	
}

body.create-page #createResult .card-body {
  padding: 0.75rem 1rem;
}
@media (max-width: 767.98px) {
  :root { --nav-h: 64px; }
  .nav-desktop { display: none; }
  .navbar-toggler { display: inline-flex; }
  body.create-page .create-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(96px, 24vh) minmax(0, 1fr);
  }
  body.create-page .hero-panel {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
    padding: clamp(0.8rem, 3vw, 1.25rem);
  }
  body.create-page .hero-panel h1 {
    max-width: none;
    font-size: clamp(1.55rem, 8vw, 2.65rem);
    line-height: 1;
    margin: 0.3rem 0 0.4rem;
  }
  body.create-page .hero-panel p {
    font-size: 0.85rem;
    margin-bottom: 0;
    max-width: 44rem;
  }
  body.create-page .hero-meta {
    display: none;
  }
  body.create-page .form-panel {
    padding: 0.75rem;
  }
  body.create-page #createForm {
    padding: 0.75rem;
  }
}

@media (max-height: 720px) {
  body.create-page .hero-panel p,
  body.create-page .hero-meta,
  body.create-page .form-text {
    display: none;
  }
  body.create-page .hero-panel h1 {
    margin-bottom: 0;
  }
  body.create-page #createForm {
    padding: 0.75rem;
  }
  body.create-page .form-label {
    margin-bottom: 0.2rem;
  }
}

/* Create page: full-width paste form after removing the left title panel. */
body.create-page .create-grid {
  grid-template-columns: 1fr;
}

body.create-page .form-panel {
  width: 100%;
}

@media (max-width: 767.98px) {
  body.create-page .create-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}

/* Create page mobile navbar: keep links visible, centered, no offcanvas trigger. */
@media (max-width: 767.98px) {
  body.create-page .navbar {
    justify-content: center !important;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body.create-page .navbar-brand,
  body.create-page .navbar-toggler {
    display: none !important;
  }

  body.create-page .nav-desktop {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: clamp(1rem, 7vw, 2.25rem);
  }

  body.create-page .nav-desktop .nav-link {
    font-size: clamp(0.68rem, 3.4vw, 0.78rem);
  }
}

/* Global centered navbar without brand. */
.navbar {
  justify-content: center !important;
}

.navbar-brand,
.navbar-toggler {
  display: none !important;
}

.nav-desktop {
  display: flex !important;
  justify-content: center;
  width: 100%;
}

.section-label-large {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0;
  border-top: 1px solid var(--border);
  border-bottom: 0;
  font-size: calc(0.65rem + 2px);
}

@media (max-width: 767.98px) {
  .nav-desktop {
    display: flex !important;
    justify-content: center;
    width: 100%;
    gap: clamp(1rem, 7vw, 2.25rem);
  }

  .nav-desktop .nav-link {
    font-size: clamp(0.68rem, 3.4vw, 0.78rem);
  }
}


.paste-heading-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1.75rem;
  row-gap: 0.35rem;
}

.paste-heading-title {
  display: inline-block;
  padding-bottom: 0.45rem;
}

.paste-heading-pipe {
  font-family: 'DM Mono', monospace;
  font-size: calc(0.65rem + 2px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1;
}

.paste-heading-label {
  display: inline-block;
  width: auto;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}







@media (max-width: 575.98px) {
  body.create-page {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  body.create-page .create-grid {
    height: auto;
    min-height: calc(100vh - var(--nav-h));
    overflow: visible;
  }

  body.create-page .form-panel,
  body.create-page #createForm {
    overflow: visible;
  }
}



#submitButton:hover,
#submitButton:focus {
  background-color: #666;
  border-color: #666;
  color: var(--bg);
}



/* Scroll-safe create layout for tablets, phones, and short viewports. */
@media (max-width: 1024px), (max-height: 700px), ((hover: none) and (pointer: coarse) and (max-height: 900px)) {
  body.create-page {
    width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.create-page .create-grid {
    width: 100%;
    height: auto;
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100dvh - var(--nav-h));
    overflow: visible;
  }

  body.create-page .form-panel,
  body.create-page #createForm {
    height: auto !important;
    min-height: 0;
    overflow: visible;
  }

  body.create-page .text-area-field {
    flex: 0 0 auto;
    min-height: 0;
  }

  body.create-page .text-area-field textarea {
    flex: 0 0 auto;
    height: clamp(170px, 42dvh, 520px);
    min-height: 170px;
  }
}

/* Minimal outline treatment for utility buttons and alerts. */
.btn-outline-primary,
.btn-outline-secondary,
.btn-secondary,
.btn-outline-danger,
.btn-danger {
  background-color: transparent;
  border: 1px solid #626262;
  color: #2f2f2f;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-danger:hover,
.btn-danger:focus {
  background-color: #3f3f3f;
  border-color: #3f3f3f;
  color: var(--bg);
}

.btn-outline-primary:active,
.btn-outline-secondary:active,
.btn-secondary:active,
.btn-outline-danger:active,
.btn-danger:active {
  background-color: #2f2f2f !important;
  border-color: #2f2f2f !important;
  color: var(--bg) !important;
}

.alert,
.alert-primary,
.alert-secondary,
.alert-warning,
.alert-danger,
.alert-success,
.alert-info {
  background-color: transparent;
  border: 1px solid #767676;
  color: #3d3d3d;
}

.alert-danger,
.alert-warning {
  border-color: #6f6f6f;
  color: #303030;
}

.alert-success,
.alert-info {
  border-color: #7a7a7a;
  color: #3a3a3a;
}

/* Refined warning/error and delete states. */
.btn-outline-danger,
.btn-danger,
#deleteButton {
  background-color: transparent;
  border-color: #6b2020;
  color: #4d1616;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-danger:hover,
.btn-danger:focus,
#deleteButton:hover,
#deleteButton:focus,
#deleteButton.is-deleting {
  background-color: #4b1414;
  border-color: #4b1414;
  color: var(--bg);
}

#deleteButton.is-deleted,
#deleteButton.is-deleted:disabled {
  background-color: #250808;
  border-color: #250808;
  color: var(--bg);
  opacity: 1;
}

.alert-danger {
  background-color: transparent;
  border-color: #5a1717;
  color: #3f1010;
}

.alert-warning {
  background-color: transparent;
  border-color: #393939;
  color: #262626;
}

.toast {
  border-color: #393939;
  color: #262626;
  box-shadow: none;
}

/* Deleted primary state only. */
#unlockButton.is-deleted:disabled {
  background-color: transparent;
  border-color: #164c52;
  color: #164c52;
  opacity: 1;
}

.privacy-notice {
  max-width: 880px;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  text-align: center;
}

.privacy-notice h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 1rem;
}

.privacy-notice p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.info-page-shell {
  display: flex;
  flex-direction: column;
}

.info-page-shell .content-narrow {
  flex: 1 0 auto;
}

.info-footer {
  margin-top: auto;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: calc(0.65rem + 2px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.theme-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

html[data-theme="dark"] {
  --bg: #101211;
  --border: #686f6b;
  --border-dk: #f1f0ea;
  --text: #edece6;
  --text-mute: #b8bbb5;
  color-scheme: dark;
}

html[data-theme="dark"] a:hover {
  color: #fffdf4;
}

html[data-theme="dark"] .navbar,
html[data-theme="dark"] .card,
html[data-theme="dark"] .modal-content,
html[data-theme="dark"] .toast,
html[data-theme="dark"] .demo-box,
html[data-theme="dark"] .panel-box,
html[data-theme="dark"] #createForm,
html[data-theme="dark"] .list-group-item,
html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select,
html[data-theme="dark"] .input-group-text {
  background-color: var(--bg);
  color: var(--text);
}

html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select,
html[data-theme="dark"] .input-group-text {
  border-color: var(--border);
}

html[data-theme="dark"] .form-control:focus,
html[data-theme="dark"] .form-select:focus {
  border-color: var(--border-dk);
  box-shadow: 0 0 0 2px rgba(241, 240, 234, 0.12);
}

html[data-theme="dark"] .form-control::placeholder {
  color: #777b76;
}

html[data-theme="dark"] .btn-close {
  filter: invert(1) grayscale(1);
}

html[data-theme="dark"] .btn-outline-primary,
html[data-theme="dark"] .btn-outline-secondary,
html[data-theme="dark"] .btn-secondary {
  border-color: #9aa19b;
  color: #d7d8d2;
}

html[data-theme="dark"] .btn-outline-primary:hover,
html[data-theme="dark"] .btn-outline-primary:focus,
html[data-theme="dark"] .btn-outline-secondary:hover,
html[data-theme="dark"] .btn-outline-secondary:focus,
html[data-theme="dark"] .btn-secondary:hover,
html[data-theme="dark"] .btn-secondary:focus {
  background-color: #d7d8d2;
  border-color: #d7d8d2;
  color: #121212;
}

html[data-theme="dark"] .badge.bg-primary,
html[data-theme="dark"] .badge.bg-secondary,
html[data-theme="dark"] .list-group-item.active {
  background-color: #e3e1d8 !important;
  border-color: #e3e1d8 !important;
  color: #121212;
}

/* Dark theme primary action refinement. */
html[data-theme="dark"] .btn-primary {
  border-color: #b8beb7;
  color: #dfe3dc;
}

html[data-theme="dark"] .btn-primary:hover,
html[data-theme="dark"] .btn-primary:focus {
  background-color: #d7d8d2;
  border-color: #d7d8d2;
  color: #121212;
}

html[data-theme="dark"] #wordCounter {
  background-color: #252826 !important;
  border: 1px solid #555c57;
  color: #d8d9d4;
}


/* Dark theme border normalization. */
html[data-theme="dark"] .btn-primary {
  border-width: 1px;
  border-style: solid;
}

html[data-theme="dark"] .badge {
  border-width: 1px;
  border-style: solid;
}





/* Dark theme submit hover matches outline button hover. */
html[data-theme="dark"] #submitButton:hover,
html[data-theme="dark"] #submitButton:focus {
  background-color: #d7d8d2;
  border-color: #d7d8d2;
  color: #121212;
}

/* Dark theme danger text contrast. */
html[data-theme="dark"] .btn-outline-danger,
html[data-theme="dark"] .btn-danger,
html[data-theme="dark"] #deleteButton,
html[data-theme="dark"] #deleteButton.is-deleting,
html[data-theme="dark"] #deleteButton.is-deleted,
html[data-theme="dark"] #deleteButton.is-deleted:disabled,
html[data-theme="dark"] .alert-danger {
  color: #f1eee8;
}




/* Match alert body typography to form controls. */
.alert {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.45;
}
