<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wpjsutils-tabs {
  .tab-list {
    display: flex;
    gap: 4px;
    padding: 0 4px;
    list-style-type: none;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    li {
      border: solid 1px gray;
      border-radius: 3px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      border-bottom: 0;
      padding: 6px 8px;
      padding-bottom: 5px;
      margin: 0;
      cursor: pointer;

      &amp;.active {
        background: white;
      }
    }
  }

  .panel {
    position: relative;
    top: -1px;
    z-index: 1;

    display: none;
    padding: 20px;
    background: white;

    border: solid 1px gray;
    border-radius: 4px;

    &amp;.active {
      display: block;
    }
  }
}
</pre></body></html>