/* [project]/node_modules/@timeedit/ui-components/lib/src/Layouts/DefaultContentLayout/DefaultContentLayout.css [app-client] (css) */
.default-layout-wrapper {
  background-color: #fff;
  flex-direction: column;
  height: 100%;
  display: flex;
}

.default-layout-wrapper .default-layout-content-wrapper {
  flex-direction: column;
  flex-grow: 1;
  padding: 0;
  display: flex;
  overflow-y: auto;
}

.default-layout-wrapper .default-layout-content-wrapper::-webkit-scrollbar {
  width: 10px;
}

.default-layout-wrapper .default-layout-content-wrapper::-webkit-scrollbar-track {
  background: none;
}

.default-layout-wrapper .default-layout-content-wrapper::-webkit-scrollbar-thumb {
  background: #00000073;
  border-radius: 5px;
}

.default-layout-wrapper .default-layout-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #000000a6;
  border-radius: 5px;
}

/* [project]/node_modules/@timeedit/ui-components/lib/src/components/ContentPageHeader/ContentPageHeader.css [app-client] (css) */
@layer teui-components {
  .default-layout-topbar {
    border-bottom: 1px solid #06a95f;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    display: flex;
  }

  .default-layout-topbar .default-layout-topbar-title {
    align-items: flex-start;
    justify-content: "space-around";
    flex-direction: column;
    display: flex;
  }

  .default-layout-topbar .default-layout-topbar-buttons {
    flex-direction: row;
    gap: 16px;
    display: flex;
  }

  .default-layout-topbar .title {
    color: #000000e0;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  }

  .default-layout-topbar .subtitle {
    color: #000000a6;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 0 !important;
  }
}

