@include export-module('cc-screen-config-generator-layout') {
  .co-screen-config-generator {
    display: flex;
    overflow: auto;
    height: 93vh;
    column-gap: 20px;

    .tree-wrapper {

      .tree-entry {
        display: flex;
        flex-direction: column;

        span {
          padding: 7px;
          border: 1px solid #dddddd;
          border-radius: 5px;
          margin-bottom: 6px;
          cursor: pointer;
          background: #f6f6f6;
        }

        .level2 {
          margin-left: 10px;
        }
        .level3 {
          margin-left: 20px;
        }
        .level4 {
          margin-left: 30px;
        }
        .level5 {
          margin-left: 40px;
        }
      }
    }

    .category-wrapper {
      display: flex;
      flex-direction: column;

      .header-wrapper {
        display: flex;
        column-gap: 30px;
        align-items: center;
        height: 30px;
        margin-top: 15px;

        h3 {
          margin-top: 20px;
        }
      }

      co-button {
        width: 20px;
        height: 20px;
        justify-content: center;
      }

      .header-container {
        padding: 13px;
        border: 2px solid #dde5eb;
        border-radius: 11px;
        margin-top: 10px;
        min-width: 450px;
      }

      .rubrics-wrapper {
        display: flex;
        column-gap: 20px;
        width: max-content;
      }

      .fields-wrapper {
        display: flex;
        column-gap: 30px;
        align-items: center;
      }

      .category-content-wrapper {
        display: flex;

        .rubric-wrapper {
          display: flex;
          flex-direction: column;

          .inputs-wrapper {
            display: flex;
            column-gap: 15px;
          }
        }
      }
    }
  }
}
