* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    margin: 0;
  }
  
  body {
    font-size: 0.8rem;
    background: #f7fafc;
    color: #2d3748;
    min-height: 100vh;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  main {
    max-width: 350px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #2d3748;
    border-radius: 4px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  }
  main p {
    padding: 0.75rem;
    border-bottom: 1px solid #edf2f7;
  }
  main .loading {
    border-bottom: none;
  }
  
  header {
    padding: 0.6rem 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 1.5rem;
    background-color: #2d3748;
    border: 1px solid #2d3748;
    border-radius: 4px 4px 0 0;
    color: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header h1 {
    font-size: 1rem;
    margin-bottom: 1px;
    padding-left: 0.5rem;
  }
  
  button {
    height: 36px;
    width: 180px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px;
    margin-top: 1rem;
    background-color: #6b46c1;
    border: 1px solid #6b46c1;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
  }
  button:focus, button:active, button:hover {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  }
  
  footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    margin-top: 1rem;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1rem;
    background-color: #2d3748;
    border: 1px solid #2d3748;
    border-radius: 0 0 4px 4px;
  }
  footer p {
    font-size: 0.7rem;
    color: #cbd5e0;
  }
  footer p a {
    color: #cbd5e0;
    text-decoration: none;
  }
  footer p a:hover {
    text-decoration: underline;
  }
  footer p:first-child {
    border-top: none;
    border-bottom: none;
    margin-left: 1rem;
  }
  footer svg.feather {
    margin-right: 1rem;
  }
  
  .feather {
    width: 14px;
    height: 14px;
    stroke: #cbd5e0;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  
  .feather-help-circle {
    width: 12px;
    height: 12px;
    stroke: #cbd5e0;
    margin-top: 5px;
  }
  
  .feather-monitor {
    stroke: #f7fafc;
    width: 16px;
    height: 15px;
    margin-bottom: 1px;
  }
  
  /* Tooltips */
  [tooltip] {
    position: relative;
  }
  
  [tooltip]::before,
  [tooltip]::after {
    text-transform: none;
    font-size: 0.7rem;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
  }
  
  [tooltip]::before {
    content: "";
    border: 5px solid transparent;
    z-index: 1001;
  }
  
  [tooltip]::after {
    content: attr(tooltip);
    /* magic! */
    line-height: 1.25;
    width: 11rem;
    height: auto;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 0.5rem 0.5em -0.5rem #4a5568;
    background: #1a202c;
    color: #f7fafc;
    z-index: 1000;
  }
  
  [tooltip]:hover::before,
  [tooltip]:hover::after {
    display: block;
  }
  
  [tooltip=""]::before,
  [tooltip=""]::after {
    display: none !important;
  }
  
  [tooltip]:not([flow])::before,
  [tooltip][flow^=up]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #1a202c;
    left: 6px;
    transform: translate(-50%, 0);
  }
  
  [tooltip]:not([flow])::after,
  [tooltip][flow^=up]::after {
    bottom: calc(100% + 5px);
    left: -50px;
    transform: translate(-50%, 0);
  }
  
  @keyframes tooltips-vert {
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  @keyframes tooltips-horz {
    to {
      opacity: 1;
      transform: translate(0, -50%);
    }
  }
  [tooltip]:not([flow]):hover::before,
  [tooltip]:not([flow]):hover::after {
    animation: tooltips-vert 300ms ease-in forwards;
  }
  