  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Courier New', Courier, monospace;
      background-color: #252525;
      color: white;
    }

    body {
      display: flex;
      flex-direction: column;
      overflow: hidden; /* disables scrollbars */
    }

    .info {
      flex: 1;
      font-size: 1.1em;
      line-height: 1.5;
      user-select: none;
      padding: 2em;
    }

    .icon-button img {
      height: 20px;
      width: 20px;
    }

    .icon-button:hover {
      background-color: #666;
      transform: scale(1.05);
    }

    .icon-button.disabled {
      pointer-events: none;
      opacity: 0.5;
      cursor: not-allowed;
    }

    .jar-icon {
      width: 60px;
      height: auto;
    }

    #cookie-settings {
      position: fixed;
      bottom: 1em;
      right: 1em;
    }



    .form-message {
      font-size: 0.9rem;
      text-align: center;
      margin-top: 0.5rem;
      color: #ff6b6b;
    }

    .form-message.success {
      color: #4ade80;
    }

    .password-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .password-row img {
      cursor: pointer;
      height: 20px;
    }

    .password-row button {
      margin-left: auto;
    }