<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#output-area-container {
  display: flex;
  flex-direction: column;
  width: 45%;
  overflow: auto;
  max-height: 32rem;
  /* height can not be set as max-content, if it is set then the output size can be much bigger than the form */
  position: sticky;
  top: 80px;
}

code {
    white-space: pre-line;
}

code.hljs {
  white-space: pre-wrap;
}

pre {
  position: relative;
}

.copy-button {
  position: absolute;
  right: 6px;
  top: -12px;
}

.copy-button svg {
  min-width: 0px !important;
}

.hidden {
  display: none;
}

#output-header {
  display: flex;
  z-index: 1;
  position: sticky;
  top: 0px;
  gap: 1rem;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px 4px 0px 0px;
  background: #6938ef;
}

#output-header h2 {
  color: white;
  margin: 0px;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
}

#header-info-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.all-copy {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: initial;
}

.all-copy p {
  margin: 0px;
  color: #cecece;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

#stop-btn-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

#stopBtnText {
  margin: 0px;
  color: #cecece;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
}

#output,
#cy {
  padding: 16px 38px;
  background: #1f2c3d;
  display: flex;
  gap: 0.5rem;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

li:has(h1)::marker {
  font-size:2em !important;
}

li:has(h2)::marker {
  font-size:1.6em !important;
}

#output h1 {
  margin: 0px !important;
  padding: 0px !important;
  font-size: 2em !important;
  line-height: 1.4em !important;
}

#output h2 {
  margin: 0px !important;
  padding: 0px !important;
  font-size: 1.6em !important;
  line-height: 1.4em !important;
}

#output h3 {
  margin: 0px !important;
  padding: 0px !important;
  font-size: 1em !important;
  line-height: 1.4em !important;
}

#output p {
  margin: 0px;
}

#cy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0px;
}

#output li::marker {
  font-size: 1em;
}

#output li {
  margin-bottom: 0.3em;
}

table,
th,
td {
  border: 1px solid;
}

td {
  padding: 1rem;
}

th {
  text-align: initial;
  font-size: 1.2em;
}

.empty {
  align-items: center;
  text-align: center;
}

#circle-above-img {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38b1e4;
}

#output img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

#output #img-container {
  display: flex;
  width: 90px;
  height: 90px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10000px;
  background: #6938ef;
}

#codeOutput {
  overflow: auto;
}

#flowchart-action-container {
  display: flex;
  gap: 1rem;
}

.download-svg-icon-container {
  display: flex;
  justify-content: flex-end;
}

.download-svg-icon-container svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

svg#graphDiv {
  font-size: 11px;
  font-weight: 500;
  line-height: 15px; /* 125% */
}

#graphDiv .messageText {
  fill: white !important;
}

#graphDiv .messageLine0 {
  stroke: white !important;
}

#output svg {
  min-width: 100rem;
}

#img-container svg {
  min-width: 0px;
}

.flowchart #output {
  overflow: auto;
}

.gantt .bar-label {
  fill: #333333 !important;
  font-weight: bold !important;
}

@media (max-width: 480px) {
  #output {
    padding: 1rem 10px;
  }

  #output h1 {
    font-size: 1.5em !important;
    margin: 0.5rem 0rem !important;
  }

  #output h2 {
    font-size: 1.3em !important;
    margin: 0.5rem 0rem !important;
  }

  #output ol {
    padding-left: 20px;
  }
}

@media screen and (max-width: 1200px) {
  #output-area-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: auto;
    min-height: 32rem;
    /* height can not be set as max-content, if it is set then the output size can be much bigger than the form */
  }

  #header-info-container h2 {
    font-size: 13px;
  }

  #output {
    font-size: 14px;
  }


  .copy-button {
    right: 5px;
    top: 0px;
  }

  .copy-button svg {
    min-width: 1rem !important;
    /* setting width will not work because of the #output svg style(it will be applied too) */
  }

  #stopBtnText {
    font-weight: 600;
    font-size: 13px;
  }
}
</pre></body></html>