[data-md-color-scheme="slate"] {
  --md-default-bg-color: rgba(0, 8, 45, 1);
  --md-hue: 230; 
}

 

.twemoji-page-icon {
    width: 100%;
    height: 3rem;
    --md-icon-size: 1.125em;
    display: inline-flex;
    vertical-align: text-top;
    justify-content: center;
    fill: currentColor;
    margin-top: 2rem;
}

.partner-logo {
    width: 100%;
    height: 3rem;
    --md-icon-size: 1.125em;
    display: inline-flex;
    vertical-align: text-top;
    justify-content: center;
    fill: currentColor;
    margin-top: 2rem;
}

.meme {
    width: 100%;
    height: auto;
    --md-icon-size: 1.125em;
    display: inline-flex;
    vertical-align: text-top;
    justify-content: center;
    fill: currentColor;
    margin-top: 2rem;
}

.meme img {
  max-width: 400px;
  max-height: 400px;
}

.spacer {
  width: 100%;
  height: 4rem;
  display: inline-flex;
}

.spacer-small {
  width: 100%;
  height:2rem;
  display: inline-flex;
}

.md-meta {
  display: none;
}

/* Container card that matches the theme */
.md-typeset .form-card {
  background: var(--md-default-bg-color);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .6rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

/* Responsive grid */
.md-typeset .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.25rem;
}
@media (min-width: 720px) {
  .md-typeset .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.md-typeset .span-2 { grid-column: 1 / -1; }

/* Labels + inputs */
.md-typeset .field label,
.md-typeset fieldset legend {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
}

.md-typeset .field input[type="text"],
.md-typeset .field input[type="email"] {
  width: 100%;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: .4rem;
  padding: .6rem .7rem;
  background: var(--md-code-bg-color);
  color: var(--md-default-fg-color);
}

.md-typeset .field input[type="text"]:focus-visible,
.md-typeset .field input[type="email"]:focus-visible {
  outline: 2px solid var(--md-primary-fg-color);
  outline-offset: 2px;
}

/* Segmented radio pills */
.md-typeset .segmented {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.md-typeset .segmented .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.md-typeset .segmented label {
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 999px;
  padding: .45rem .85rem;
  cursor: pointer;
  user-select: none;
}

.md-typeset .segmented .sr-only:focus-visible + label {
  outline: 2px solid var(--md-primary-fg-color);
  outline-offset: 2px;
}

.md-typeset .segmented .sr-only:checked + label {
  background: var(--md-primary-fg-color);
  color: var(--md-primary-bg-color);
  border-color: transparent;
}

/* Actions */
.md-typeset .actions { margin-top: .25rem; }
