/* [project]/apps/niice-jam/components/DocTemplateSelector/styles.module.css [app-client] (css) */
.styles-module__S_ZVJW__container {
  --gutter: 24px;
  --margin: 48px;
  display: block;
}

.styles-module__S_ZVJW__container header {
  padding: var(--margin);
  z-index: 1;
  background: #fff;
  justify-content: space-between;
  display: flex;
  position: sticky;
  top: 0;
}

.styles-module__S_ZVJW__container header .create-blank-template-button {
  opacity: .5;
  text-decoration: underline;
  transition: opacity .1s;
}

.styles-module__S_ZVJW__container header .create-blank-template-button:hover {
  opacity: 1;
}

.styles-module__S_ZVJW__template-list {
  grid-gap: var(--gutter);
  padding: var(--margin);
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  padding-top: 0;
  display: grid;
}

.styles-module__S_ZVJW__template-item .template-preview {
  margin-bottom: .5lh;
}

.styles-module__S_ZVJW__template-item .template-preview:empty {
  aspect-ratio: 16 / 9;
  background: #0000000d;
  outline: none;
}

.styles-module__S_ZVJW__template-item .template-preview img {
  outline: 1px solid #0000001a;
  display: block;
  position: relative;
  width: 100% !important;
  height: auto !important;
}

.styles-module__S_ZVJW__template-item .template-preview:hover {
  cursor: pointer;
}

.styles-module__S_ZVJW__template-item .actions {
  opacity: 0;
  gap: 1lh;
  margin-top: -.25lh;
  margin-bottom: -2lh;
  transition: opacity .1s ease-out;
  display: flex;
}

.styles-module__S_ZVJW__template-item:hover .actions {
  opacity: .5;
}

.styles-module__S_ZVJW__template-item:hover .actions:hover {
  opacity: 1;
}

/* [project]/apps/niice-jam/components/AppRouter/ControlPanels/Docs/styles.module.css [app-client] (css) */
.styles-module__WznVVa__docs-list-container {
  margin-bottom: var(--margin);
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  width: 100%;
  padding: 0;
  display: grid;
}

.styles-module__WznVVa__doc-list-item {
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.styles-module__WznVVa__doc-preview {
  aspect-ratio: 16 / 9;
  margin-bottom: calc(var(--niice-baseline) * .5);
  background: #0000000d;
  outline: 1px solid #0000001a;
  position: relative;
}

.styles-module__WznVVa__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.styles-module__WznVVa__doc-title {
  margin-left: -.2ex;
}

.styles-module__WznVVa__doc-options {
  opacity: 0;
  transition: opacity .1s ease-out;
  position: absolute;
  bottom: -6px;
  right: -3px;
}

.styles-module__WznVVa__doc-options:has([data-expanded="true"]) {
  opacity: 1;
}

.styles-module__WznVVa__doc-list-item:hover .styles-module__WznVVa__doc-options {
  opacity: 1;
}

.styles-module__WznVVa__link {
  width: 100%;
  padding: 0;
  text-decoration: none;
  display: block;
}

.styles-module__WznVVa__sort-control {
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.styles-module__WznVVa__sort-label {
  font-size: 14px;
  font-weight: 500;
  line-height: var(--n-baseline);
  font-family: var(--n-ui-font, var(--n-primary-font));
}

.styles-module__WznVVa__dialog-container {
  width: min(90vw, 1600px);
  height: min(90vh, 1600px);
  padding: var(--margin);
  display: block;
  overflow-y: auto;
}

