.extension_overview_container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.extension_overview_header {
  display: flex;
  padding: 20px 20px 14px;
  overflow: hidden;
  font-size: 14px;
  align-items: center;
  justify-content: center;

  .default_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 128px;
    width: 128px;
    flex-shrink: 0;
    object-fit: contain;
    background-color: #f1f2f2;
    border-radius: 50%;

    :global {
      .kaitian-icon {
        font-size: 80px;
      }

      .kt-icon {
        color: #d8d9d9;
      }
    }
  }

  img {
    height: 128px;
    width: 128px;
    object-fit: contain;
  }

  .extension_detail {
    flex: 1;
    padding-left: 20px;

    .extension_name {
      display: flex;
      align-items: center;

      a {
        color: var(--foreground);
      }

      h1 {
        font-size: 26px;
        line-height: 30px;
        font-weight: 600;
        // white-space: nowrap;
        margin: 0px;
        color: var(--foreground);
      }

      .extension_id {
        font-size: 12px;
        line-height: 18px;
        margin-left: 10px;
        color: var(--badge-foreground);
        background-color: var(--badge-background);
        border-radius: 4px;
        padding: 0 4px;
      }
    }

    .manifest {
      margin-top: 6px;
      display: flex;
      align-items: center;

      span {
        font-size: 12px;
        display: inline-block;
        line-height: 20px;
        height: 20px;
        margin-left: 14px;
        padding-left: 14px;
        border-left: 1px solid hsla(0, 0%, 50.2%, 0.7);

        a {
          font-size: 12px !important;
          color: var(--foreground);
        }
      }

      :nth-child(1) {
        margin-left: 0px;
        padding-left: 0px;
        border-left: none;

        a {
          font-size: 16px !important;
          color: var(--foreground);
        }
      }
    }

    .description {
      margin-top: 10px;
      font-size: 14px;
      color: var(--descriptionForeground);
    }

    .buttons {
      margin-top: 8px;
      :global(.kt-button) {
        margin-right: 10px;
      }
    }
  }
}

.extension_overview_body {
  flex: 1;
  .tabs {
    width: 100%;
    padding: 0px 20px;
    font-size: 14px;
    font-weight: bold;
  }
  .extension_content {
    height: calc(100% - 39px);
  }
}
