.container {
  font: 14px/17px system-ui, verdana, arial, sans-serif;
  position: absolute;
  inset: 0;

  .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;

    & [data-action] {
      color: blue;
      cursor: pointer;

      &:hover {
        text-decoration: underline dotted;
      }
    }

    details {
      padding: 0.6rem 0;
      max-width: 80vw;

      div {
        margin: 0.8rem 0;
        line-height: 18px;
      }

      summary {
        cursor: pointer;

        span {
          display: inline-block;
          max-width: 75vw;
          padding: 5px;
          background-color: hsl(210, 8%, 90%);
          color: hsl(210, 8%, 5%);
          font-weight: 500;
          border-radius: 4px;

          &:hover {
            text-decoration: underline dotted;
          }
        }
      }
    }

    a {
      &.linkJQL {
        i { color: #f08d49; }
      }
      &[target] {
        display: inline-block;
        text-decoration: none;
        color: rgba(0, 0, 238, 0.7);
        font-weight: bold;
        display: inline-block;
      }

      &[target]:before {
        padding-right: 0.3rem
      }

      &[target]:hover:before {
        color: red !important;
      }

      &[target="_blank"]:before {
        content: "↗";
      }

      &[target="_top"]:before {
        content: "↺";
      }
    }

    #NameDiv {
      h3 {
        margin: 0.5rem 0;
      }

      h3[data-name]:before {
        content: 'Hello there ';
      }

      h3[data-name]:after {
        content: "'"attr(data-name)"'";
        font-style: italic;
      }

      border: 1px solid green;
      padding: 1rem;
      text-align: center;
    }

    code:not(.language-javascript) {
      background-color: hsl(210, 8%, 90%);
      color: hsl(210, 8%, 5%);
      padding: 2px 4px;
      display: inline-block;
      border-radius: 4px;
      margin: 1px 0;
    }
  }
}
