/* ----- sidenav ----- */
.main {
  overflow: initial;
}

.headline-divider {
  margin-top: 1.4em;
  padding-top: 1.4em;
  border-top: 1px solid #e3e3e3;
}

.button.button-block {
  display: inline;
}

.row-flex {
  display: flex;
}

.row-flex .column-flex > .row-flex {
  margin-top: 2em;
}

.row-flex + h4 {
  margin-top: 1.6em;
}

.column-flex-center {
  align-self: center;
}

ul.links.small li > a {
  display: initial;
}

.compound-item-list li > ul li {
  margin-bottom: 0;
}

@media only screen and (max-width: 734px) {
  h3 {
    margin-top: 1.6em;
  }
  .row-flex {
    display: block;
  }
  .row-flex + p {
    margin-top: 0.8em;
  }
  .row-flex .column-flex > .row-flex {
    margin-top: 0;
    margin-bottom: 0;
  }

  .Sidenav_container {
    margin-bottom: 3em !important;
  }
}


.button-super {
    --sk-button-border-radius: 12px;
    --sk-button-margin-horizontal: 14px;
    --sk-button-margin-vertical: 14px;
}


table {
  font-size: 14px;
  border: 1px solid #ccc;
}
@media only screen and (max-width: 734px) {
  .feature-table {
    overflow-x: auto;
  }
  table {
    font-size: 12px;
  }
}

table th {
  padding: 5px 10px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}

table th:last-of-type {
  border-right: 0;
}
table td:first-of-type {
  font-weight: 600;
  text-align: left;
}
table td {
  padding: 5px 10px;
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
table td:last-of-type {
  border-right: none;
}
table tbody tr:last-of-type td {
  border-bottom: 0;
}

/*CSS copied from: https://developer.apple.com/documentation/widgetkit/developing-a-widgetkit-strategy*/

:root {
  --color-figure-yellow: #9e6700;
  --color-figure-yellow-secondary: #fffbf2;
  --color-fill-light-gray-secondary: #f5f5f7;
  --color-figure-light-gray: #696969;
  --color-aside-tip-background: rgb(250, 255, 255);
  --color-aside-tip-border: rgb(61, 119, 125);
}

aside {
  break-inside: avoid;
  border-radius: var(--aside-border-radius, 15px);
  border-style: var(--aside-border-style, solid);
  border-width: var(--aside-border-width, 1px 1px 1px 1px);
  padding: 0.9411764706rem;
  text-align: start;
  margin-top: calc(0.8em * 2);
  margin-bottom: calc(0.8em * 2);
}

aside .label {
  font-size: 1rem;
  line-height: 1.5294417647;
  font-weight: 600;
  letter-spacing: -0.022em;
  font-family: var(
    --typography-html-font,
    "SF Pro Text",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif
  );
}

aside.important {
  background-color: var(--color-figure-yellow-secondary);
  border-color: var(--color-figure-yellow);
  box-shadow: 0 0 1px 0 var(--color-figure-yellow) inset,
    0 0 1px 0 var(--color-figure-yellow);
}

aside.important .label {
  color: var(--color-figure-yellow);
}

aside.note {
  background-color: var(--color-fill-light-gray-secondary);
  border-color: var(--color-figure-light-gray);
  box-shadow: 0 0 1px 0 var(--color-figure-light-gray) inset,
    0 0 1px 0 var(--color-figure-light-gray);
}

aside.note .label {
  color: var(--color-figure-light-gray);
}

aside.tip {
  background-color: var(--color-aside-tip-background);
  border-color: var(--color-aside-tip-border);
  box-shadow: 0 0 1px 0 var(--color-aside-tip-border) inset,
    0 0 1px 0 var(--color-aside-tip-border);
}

aside.tip .label {
  color: var(--color-aside-tip-border);
}

body[data-color-scheme="dark"] aside.important {
  background-color: #2f2205;
}

body[data-color-scheme="dark"] aside.note {
  background-color: #1e1e1e;
}

body[data-color-scheme="dark"] aside.tip {
  background-color: #031e1b;
}


