@use "editor";
@use "modals";
@use "theme";

@font-face {
  font-family: "iA-Mono";
  src: url("/.client/iAWriterMonoS-Regular.woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "iA-Mono";
  src: url("/.client/iAWriterMonoS-Bold.woff2");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "iA-Mono";
  src: url("/.client/iAWriterMonoS-Italic.woff2");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "iA-Mono";
  src: url("/.client/iAWriterMonoS-BoldItalic.woff2");
  font-weight: bold;
  font-style: italic;
}

html,
body {
  margin: 0;
  height: 100%;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

#sb-root {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#sb-top {
  display: flex;
  flex-direction: row;
  z-index: 20;

  height: 55px;

  .main {
    flex: 2;
    max-width: 100%;

    .inner {
      // Hack to not have SCSS precompile this value but use proper CSS variables
      max-width: var(--#{"editor-width"});
      margin: auto;
      font-size: 28px;
      padding: 10px 0;
      display: flex;
      flex-direction: row;

      .wrapper {
        width: 100%;
        padding: 0 20px;
        position: relative;
      }

      .sb-notifications {
        position: fixed;
        bottom: 0;
        left: 5px;
        right: 5px;
        font-size: 15px;
        z-index: 100;

        >div {
          padding: 3px;
          margin-bottom: 3px;
          border-radius: 5px;
        }
      }

      #sb-current-page {
        flex: 1;

        overflow: hidden;
        white-space: nowrap;
        text-align: left;
        display: block;

        .cm-scroller {
          font-family: var(--ui-font);
        }

        .cm-content {
          padding: 0;

          .cm-line {
            padding: 0;
          }
        }
      }
    }

    .sb-actions {
      text-align: right;
      position: absolute;
      right: 15px;
      top: 0;
    }

    .progress-wrapper {
      display: inline-block;
      position: relative;
      top: -6px;
      padding-right: 6px;
    }

    .progress-bar {
      display: flex;
      justify-content: center;
      align-items: center;

      width: 20px;
      height: 20px;
      border-radius: 50%;
      font-size: 6px;

    }

    // .progress-bar::before {
    //   content: "66%";
    // }
  }

  .sb-panel {
    flex: 1;
  }
}

#sb-main {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  height: 0;

  .sb-panel {
    flex: 1;

    iframe {
      border: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
    }
  }
}

#sb-editor {
  flex: 2;
  height: 100%;

  width: 100%;
}

.sb-bhs {
  height: 300px;
  width: 100%;
  z-index: 10;

  .sb-panel {
    height: 100%;

    iframe {
      border: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
    }
  }
}

.sb-modal {
  position: absolute;
  z-index: 100;

  .sb-panel {
    height: 100%;

    iframe {
      border: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
    }
  }
}