html,
body {
  height: 100%;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

code,
pre {
  font-family: Consolas, "Cascadia Mono", monospace;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.tek-app-shell {
  display: grid;
  grid-template-rows: 40px minmax(0, 1fr);
  grid-template-columns: 200px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--mud-palette-background);
  transition: grid-template-columns 160ms ease;
}
.tek-app-shell-collapsed {
  grid-template-columns: 70px minmax(0, 1fr);
}

.tek-brand-bar {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  background: var(--mud-palette-background);
  border-bottom: 2px solid #036326;
}

.tek-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
  min-width: 0;
  padding: 0 16px;
  color: #036326;
  background: white;
  transition: width 160ms ease;
}
.tek-brand:hover, .tek-brand:has(.tek-sidebar-home.active) {
  color: #01190a;
}

.tek-app-shell-collapsed .tek-brand {
  justify-content: center;
  width: 70px;
  padding-right: 0;
  padding-left: 0;
}

.tek-sidebar {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-height: 0;
  padding: 10px;
  color: white;
  background: #036326;
}

.tek-sidebar-action,
.tek-nav-group-toggle,
.tek-sidebar-nav a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 36px;
  padding: 4px 8px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.tek-sidebar-toggle {
  display: inline-flex;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.tek-sidebar-home {
  display: inline-flex;
  min-width: 0;
  color: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.tek-sidebar-action {
  cursor: pointer;
}
.tek-sidebar-action:hover {
  color: white;
  background: #06742e;
}

.tek-nav-group-toggle {
  cursor: pointer;
}
.tek-nav-group-toggle:hover, .tek-nav-group-toggle.active {
  color: white;
  background: #06742e;
}

.tek-sidebar-nav {
  display: grid;
  gap: 4px;
}
.tek-sidebar-nav a:hover,
.tek-sidebar-nav a.active {
  color: white;
  background: #06742e;
}

.tek-sidebar-primary-nav {
  flex: 0 0 auto;
}

.tek-sidebar-footer-nav {
  flex: 0 0 auto;
  margin-top: auto;
}

.tek-nav-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.tek-nav-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-app-shell-collapsed .tek-nav-text {
  display: none;
}

.tek-app-shell-collapsed .tek-sidebar-action,
.tek-app-shell-collapsed .tek-nav-group-toggle,
.tek-app-shell-collapsed .tek-sidebar-nav a {
  justify-content: center;
}

.tek-nav-group {
  display: grid;
  gap: 4px;
}

.tek-nav-group-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 36px;
  min-height: 36px;
  padding: 4px 8px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: transparent;
  font: inherit;
  text-align: left;
}

.tek-nav-group-chevron {
  margin-left: auto;
}

.tek-nav-group-items {
  display: grid;
  gap: 4px;
  padding-left: 18px;
}

.tek-app-shell-collapsed .tek-nav-group-items {
  padding-left: 0;
}

@media (min-width: 901px) {
  .tek-app-shell-collapsed .tek-nav-group-items a {
    justify-content: flex-end;
    min-height: 34px;
    padding: 6px 7px 6px 12px;
    background: rgba(255, 255, 255, 0.08);
  }
  .tek-app-shell-collapsed .tek-nav-group-items a:hover,
  .tek-app-shell-collapsed .tek-nav-group-items a.active {
    background: #06742e;
  }
  .tek-app-shell-collapsed .tek-nav-group-items .tek-nav-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    font-size: 1rem;
  }
}
.tek-main-content {
  grid-row: 1/span 2;
  grid-column: 2;
  min-width: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .tek-app-shell {
    grid-template-rows: auto auto minmax(0, 1fr);
    grid-template-columns: 1fr;
  }
  .tek-app-shell-collapsed {
    grid-template-columns: 1fr;
  }
  .tek-app-shell-collapsed .tek-brand {
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    padding: 6px 14px;
  }
  .tek-app-shell-collapsed .tek-nav-text {
    display: inline;
  }
  .tek-app-shell-collapsed .tek-sidebar-action,
  .tek-app-shell-collapsed .tek-sidebar-nav a {
    justify-content: flex-start;
  }
  .tek-brand-bar {
    padding-top: 0;
  }
  .tek-brand {
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    padding: 6px 14px;
  }
  .tek-sidebar {
    grid-row: 2;
    grid-column: 1;
    width: 100%;
    min-height: auto;
  }
  .tek-main-content {
    grid-row: 3;
    grid-column: 1;
  }
}
.tek-crud-form {
  max-width: 560px;
}

.tek-form-actions,
.tek-editor-actions {
  margin-top: 4px;
}

.tek-inline-field-button {
  align-self: flex-start;
  margin-top: 8px;
  padding: 0;
}

.tek-resizable-text-field textarea {
  min-height: 5.5rem;
  resize: vertical !important;
}

.tek-row-select-button {
  padding: 0;
  border: 0;
  color: var(--mud-palette-primary);
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.tek-row-select-button:hover {
  text-decoration: underline;
}

.tek-row-primary-button {
  font-weight: 700;
}

.tek-filter-row {
  flex-wrap: wrap;
  gap: 16px;
}

.tek-filter-bar {
  padding: 12px 16px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 6px;
  background: var(--mud-palette-background-grey);
}

.tek-filter-label {
  color: var(--mud-palette-text-secondary);
}

.tek-filter-item {
  min-width: 0;
  flex: 0 0 auto;
}
.tek-filter-item-search {
  width: 180px;
}
.tek-filter-item-status {
  width: 130px;
}
.tek-filter-item-date {
  width: 156px;
}
.tek-filter-item-period {
  width: 310px;
}
.tek-filter-item-cursor {
  width: 190px;
}
.tek-filter-item-product {
  width: 300px;
}
.tek-filter-item-size {
  width: 90px;
}

.tek-filter-actions {
  flex-wrap: nowrap;
}

.tek-stat-card {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 6px;
  background: var(--mud-palette-surface);
}
.tek-stat-card-label {
  color: var(--mud-palette-text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tek-stat-card-value {
  align-self: end;
  color: #036326;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.tek-stat-card--warning {
  border-color: var(--mud-palette-error);
}
.tek-stat-card--warning .tek-stat-card-value {
  color: var(--mud-palette-error);
}

.tek-section-card {
  padding: 18px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 8px;
  background: var(--mud-palette-surface);
}
.tek-section-card--brand {
  background: linear-gradient(180deg, rgba(3, 99, 38, 0.04) 0%, rgba(3, 99, 38, 0) 96%), var(--mud-palette-surface);
}

.tek-panel {
  padding: 14px 16px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 6px;
  background: var(--mud-palette-background-grey);
}
.tek-panel-header {
  margin-bottom: 6px;
}

.tek-debug-log-list {
  margin: 0;
  padding-left: 18px;
}
.tek-debug-log-list li + li {
  margin-top: 4px;
}

.tek-form-switch {
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .tek-stat-card-value {
    font-size: 1.75rem;
  }
  .tek-form-switch {
    width: 100%;
    padding-bottom: 0;
  }
}
.nowrap {
  white-space: nowrap;
}

.tek-shop-data-grid table {
  border-collapse: separate;
  border-spacing: 0;
}
.tek-shop-data-grid .tek-data-grid-selected-row > td,
.tek-shop-data-grid .tek-data-grid-selected-row > th {
  background: #d7eade !important;
  color: var(--mud-palette-text-primary) !important;
  font-weight: 700;
}
.tek-shop-data-grid .tek-data-grid-selected-row .tek-row-select-button {
  font-weight: 800;
}

.tek-data-grid-page-select,
.tek-data-grid-page-size {
  width: 86px;
}

.tek-data-grid-pager-separator {
  color: var(--mud-palette-divider);
}

.tek-page-header-divider {
  height: 40px;
  border-bottom: 2px solid #036326;
}

.tek-tabs {
  min-width: 0;
}
.tek-tabs .tek-shop-data-grid table {
  table-layout: fixed;
  width: 100%;
}
.tek-tabs .tek-data-grid-container-fit-content {
  display: inline-block;
  max-width: 100%;
}
.tek-tabs .tek-data-grid-container-fit-content .tek-shop-data-grid table {
  width: max-content;
}
.tek-tabs .tek-data-grid-container-fit-content .tek-data-grid-pager {
  width: 100%;
}

.tek-tab-panel {
  min-width: 0;
  padding: 14px;
  background: var(--mud-palette-surface);
}

.tek-selected-table-row > td,
.tek-selected-table-row > th {
  background: #d7eade !important;
  color: var(--mud-palette-text-primary) !important;
  font-weight: 700;
}

.tek-selected-table-row .tek-row-select-button {
  font-weight: 800;
}

.tek-product-id-column {
  width: 4rem;
  max-width: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-name-column {
  width: auto;
  min-width: 0;
}

.tek-product-identifier-column {
  width: 12rem;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-brand-column {
  width: 7.5rem;
  max-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-manufacturer-column {
  width: 7.5rem;
  max-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-aggregate-column {
  width: 14rem;
  max-width: 14rem;
  overflow-wrap: anywhere;
}

.tek-product-category-paths {
  display: grid;
  gap: 0.2rem;
  font-size: 0.72rem;
  line-height: 1.25;
}

.tek-product-aggregate-value {
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: normal;
}

.tek-product-active-column {
  width: 3.5rem;
  max-width: 3.5rem;
  text-align: center;
}

.tek-product-updated-column {
  width: 7rem;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-identifier-header {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.tek-product-identifier-header-select {
  width: 7rem;
}

.tek-category-aggregate-column {
  width: 14rem;
  max-width: 14rem;
  overflow-wrap: anywhere;
}

.tek-category-aggregate-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}

.tek-category-aggregate-value {
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: normal;
}

.tek-product-template-form {
  max-width: 880px;
}

.tek-product-template-row {
  display: grid;
  grid-template-columns: 15rem 6rem minmax(20rem, 1fr) 4rem;
  gap: 8px;
  align-items: center;
  max-width: 880px;
  padding: 0 14px 8px 14px;
  border-bottom: 1px solid #036326;
}

.tek-product-template-section {
  font-weight: 600;
}

.tek-product-template-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .tek-product-template-row {
    grid-template-columns: minmax(9rem, 1fr) auto;
  }
}
@media (max-width: 600px) {
  .tek-product-template-row {
    grid-template-columns: 1fr auto;
    padding: 8px;
  }
}
.tek-product-detail-editor {
  min-width: 0;
}

.tek-product-preview-tab {
  min-width: 0;
}

.tek-product-preview-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.tek-product-preview-integration {
  width: min(360px, 100%);
}

.tek-product-preview-branches {
  min-width: 0;
}

.tek-product-preview-content {
  min-height: 320px;
  overflow-wrap: anywhere;
}
.tek-product-preview-content img {
  max-width: 100%;
  height: auto;
}

.tek-product-json-tab {
  min-width: 0;
}

.tek-product-json-content {
  max-height: 65vh;
  padding: 16px;
  overflow: auto;
  background: var(--mud-palette-background-grey);
}
.tek-product-json-content pre {
  min-width: max-content;
  color: var(--mud-palette-text-primary);
  font-size: 0.85rem;
  line-height: 1.5;
  white-space: pre;
  word-break: normal;
  tab-size: 2;
}

.product-content-images {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.product-content-image {
  flex: 1 1 100%;
  min-width: 0;
  margin: 0;
}
.product-content-image > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.product-content-image-title {
  display: block;
  margin-bottom: 12px;
}
.product-content-image--benefit {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
.product-content-image--benefit > img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.product-content-image--boxed, .product-content-image--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.product-content-image--boxed > img, .product-content-image--wide > img {
  width: 100%;
  object-fit: contain;
}
.product-content-image--boxed > img {
  height: 400px;
}
.product-content-image--wide > img {
  min-height: 320px;
  height: 100%;
  object-fit: cover;
}
.product-content-image--standalone > img, .product-content-image--video-cover > img {
  width: 100%;
}
@media (min-width: 992px) {
  .product-content-image--half, .product-content-image--benefit {
    flex: 0 1 calc(50% - 12px);
  }
  .product-content-image--full {
    flex-basis: 100%;
  }
  .product-content-image--boxed, .product-content-image--wide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .product-content-image--image-right > img {
    order: 2;
  }
}

.tek-product-detail-workspace {
  --tek-product-panel-gap: 12px;
  --tek-product-panel-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}
.tek-product-detail-workspace--s, .tek-product-detail-workspace--m, .tek-product-detail-workspace--l {
  --tek-product-panel-columns:
    minmax(0, min(var(--tek-product-left-panel-width), calc(100% - 22rem - var(--tek-product-panel-gap))))
    minmax(0, 1fr);
}
.tek-product-detail-workspace--s {
  --tek-product-left-panel-width: 30rem;
}
.tek-product-detail-workspace--m {
  --tek-product-left-panel-width: 40rem;
}
.tek-product-detail-workspace--l {
  --tek-product-left-panel-width: 52rem;
}

.tek-product-detail-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: var(--tek-product-panel-columns);
  column-gap: var(--tek-product-panel-gap);
  align-items: end;
  min-height: 40px;
  margin-bottom: -2px;
}

.tek-product-detail-save {
  position: absolute;
  right: 0;
  bottom: 5px;
  min-height: 40px;
}

.tek-product-detail-image-save-note {
  position: absolute;
  right: 128px;
  bottom: 5px;
  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.tek-product-detail-panels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--tek-product-panel-columns);
  gap: var(--tek-product-panel-gap);
}

.tek-product-detail-panel {
  display: flex;
  min-width: 0;
}

.tek-product-panel-shell {
  width: 100%;
  min-width: 0;
  border: 2px solid #036326;
  border-radius: 0 4px 4px 4px;
  background: var(--mud-palette-surface);
}

.tek-product-panel-body {
  min-height: 320px;
  min-width: 0;
  padding-top: 16px;
}
.tek-product-panel-body:has(.tek-product-images-editor), .tek-product-panel-body:has(.tek-product-documents-editor) {
  padding-top: 0;
}

.tek-product-panel-section {
  padding: 0 16px 16px 16px;
  border-bottom: 1px solid #036326;
}

@media (max-width: 1600px) {
  .tek-product-detail-image-save-note {
    display: none;
  }
}
@media (max-width: 900px) {
  .tek-product-detail-toolbar,
  .tek-product-detail-panels {
    grid-template-columns: 1fr;
  }
  .tek-product-detail-toolbar {
    row-gap: 8px;
    margin-bottom: 8px;
  }
  .tek-product-panel-tab {
    width: 100%;
    max-width: none;
  }
  .tek-product-detail-save {
    position: static;
    justify-self: stretch;
    min-height: 42px;
  }
  .tek-product-detail-image-save-note {
    position: static;
    margin-bottom: 8px;
  }
  .tek-product-panel-shell {
    border-radius: 4px;
  }
}
.tek-product-category-editor {
  min-width: 0;
}

.tek-product-category-assignments {
  border-top: 1px solid var(--mud-palette-divider);
}

.tek-product-channel-availability {
  min-width: 0;
}

.tek-product-channel-availability-row:first-of-type {
  border-top: 1px solid var(--mud-palette-divider);
}

.tek-product-images-editor {
  position: relative;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: product-images;
}

.tek-product-images-toolbar {
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin-top: 0;
  margin-bottom: -16px;
  min-height: auto;
  justify-content: flex-end;
}

.tek-product-images-empty {
  padding: 16px;
  border: 1px dashed var(--mud-palette-divider);
  border-radius: 8px;
  background: var(--mud-palette-background-grey);
}

.tek-product-image-upload-button,
.tek-product-document-upload-button {
  position: relative;
  display: inline-flex;
}
.tek-product-image-upload-button .mud-button,
.tek-product-document-upload-button .mud-button {
  width: 100%;
}

.tek-product-image-input,
.tek-product-document-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.tek-product-image-list {
  display: grid;
}
.tek-product-image-list-small {
  --tek-product-image-thumb-size: 56px;
}
.tek-product-image-list-medium {
  --tek-product-image-thumb-size: 80px;
}
.tek-product-image-list-large {
  --tek-product-image-thumb-size: 120px;
}

.tek-product-image-row {
  display: grid;
  grid-template-columns: var(--tek-product-image-thumb-size) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-radius: 0;
  background: var(--mud-palette-surface);
}
.tek-product-image-row + .tek-product-image-row {
  border-top: 1px solid var(--mud-palette-divider);
}

.tek-product-image-thumb {
  width: var(--tek-product-image-thumb-size);
  height: var(--tek-product-image-thumb-size);
  overflow: hidden;
  border-radius: 8px;
  background: var(--mud-palette-background-grey);
  cursor: pointer;
}

.tek-product-image-thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tek-product-image-meta {
  min-width: 0;
}

.tek-product-image-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.tek-product-image-metadata-preview {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.tek-product-image-text-preview {
  white-space: pre-wrap;
}

.tek-product-image-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-image-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@container product-images (max-width: 40rem) {
  .tek-product-image-preview-size {
    margin-left: 0;
  }
}
.tek-product-images-upload-overlay,
.tek-product-documents-upload-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
}
.tek-product-images-upload-overlay-box,
.tek-product-documents-upload-overlay-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  width: 100%;
  max-width: 320px;
  padding: 24px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 12px;
  background: var(--mud-palette-surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.tek-product-documents-editor {
  position: relative;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: product-documents;
}

.tek-product-documents-toolbar {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  min-height: auto;
  margin-top: 0;
  margin-bottom: -16px;
  padding: 0;
}

.tek-product-documents-empty {
  padding: 16px;
  border: 1px dashed var(--mud-palette-divider);
  border-radius: 8px;
  background: var(--mud-palette-background-grey);
}

.tek-product-document-list {
  display: grid;
}

.tek-product-document-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-radius: 0;
  background: var(--mud-palette-surface);
}
.tek-product-document-row + .tek-product-document-row {
  border-top: 1px solid var(--mud-palette-divider);
}

.tek-product-document-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--mud-palette-background-grey);
}

.tek-product-document-meta {
  min-width: 0;
}

.tek-product-document-meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-wrap: wrap;
}

.tek-product-document-title {
  flex: 1 1 12rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-product-document-metadata-preview {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.tek-product-document-text-preview {
  white-space: pre-wrap;
}

.tek-product-document-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@container product-documents (max-width: 32rem) {
  .tek-product-document-row {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
  }
  .tek-product-document-icon {
    width: 36px;
    height: 36px;
  }
  .tek-product-document-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}
.tek-media-library {
  min-width: 0;
}

.tek-media-toolbar,
.tek-media-assignments-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: auto;
  padding: 12px 0;
  background: transparent;
}

.tek-media-search {
  min-width: min(320px, 100%);
  flex: 1 1 280px;
}

.tek-media-upload-button {
  position: relative;
  display: inline-flex;
}

.tek-media-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.tek-media-list {
  --tek-media-preview-size: 72px;
}
.tek-media-list-small {
  --tek-media-preview-size: 48px;
}
.tek-media-list-large {
  --tek-media-preview-size: 112px;
}

.tek-media-preview-column {
  width: calc(var(--tek-media-preview-size) + 24px);
  max-width: calc(var(--tek-media-preview-size) + 24px);
}

.tek-media-name-column {
  width: auto;
  min-width: 0;
}
.tek-media-name-column .tek-row-select-button {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tek-media-format-column {
  width: 10rem;
  max-width: 10rem;
}

.tek-media-products-column {
  width: 6.5rem;
  max-width: 6.5rem;
  text-align: center;
}

.tek-media-usage-column {
  width: 13rem;
  max-width: 13rem;
  overflow-wrap: anywhere;
}

.tek-media-created-column {
  width: 7rem;
  max-width: 7rem;
}

.tek-media-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tek-media-preview-size);
  height: var(--tek-media-preview-size);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: var(--mud-palette-background-grey);
  cursor: pointer;
}
.tek-media-preview-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tek-image-library-picker-dialog,
.tek-document-library-picker-dialog {
  width: min(1000px, 92vw);
}
.tek-image-library-picker-dialog .mud-dialog-content,
.tek-document-library-picker-dialog .mud-dialog-content {
  max-height: 72vh;
  overflow-y: auto;
}

.tek-media-full-preview {
  display: grid;
  gap: 16px;
  justify-items: center;
  min-height: 420px;
  padding: 20px;
  background: var(--mud-palette-background-grey);
}
.tek-media-full-preview img {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
}
.tek-media-full-preview object {
  width: 100%;
  min-height: 68vh;
  border: 0;
}

.tek-media-metadata {
  max-width: 900px;
}
.tek-media-metadata-editable, .tek-media-metadata-readonly {
  padding: 20px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 8px;
}
.tek-media-metadata-editable {
  border-left: 4px solid var(--mud-palette-primary);
  background: var(--mud-palette-surface);
}
.tek-media-metadata-readonly {
  border-left: 4px solid var(--mud-palette-divider);
  background: var(--mud-palette-background-grey);
}

.tek-media-technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin: 20px 0 0;
}
.tek-media-technical-grid > div {
  min-width: 0;
}
.tek-media-technical-grid dt {
  margin-bottom: 3px;
  color: var(--mud-palette-text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.tek-media-technical-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.tek-media-monospace {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .tek-media-format-column,
  .tek-media-usage-column {
    width: 8rem;
    max-width: 8rem;
  }
  .tek-media-technical-grid {
    grid-template-columns: 1fr;
  }
}
.tek-lightbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  outline: none;
}

.tek-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
}

.tek-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}
.tek-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.6);
}

.tek-lightbox-nav-prev,
.tek-lightbox-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 10px;
}
.tek-lightbox-nav-prev:hover,
.tek-lightbox-nav-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.tek-lightbox-nav-prev {
  left: 12px;
}

.tek-lightbox-nav-next {
  right: 12px;
}

.tek-lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
}

.tek-lightbox-filename {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tek-busy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}
.tek-busy-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}
.tek-busy-overlay-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 240px;
  width: 90vw;
  max-width: 420px;
  padding: 28px 32px;
  border-radius: 12px;
  background: var(--mud-palette-surface);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.tek-busy-overlay-text {
  color: var(--mud-palette-text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.tek-login-input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--mud-palette-lines-inputs);
  border-radius: 4px;
  color: var(--mud-palette-text-primary);
  background: var(--mud-palette-surface);
  font: inherit;
}
.tek-login-input:focus {
  border-color: var(--mud-palette-primary);
  outline: 2px solid rgba(var(--mud-palette-primary-rgb), 0.2);
  outline-offset: 1px;
}

.tek-login-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.tek-login-checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: var(--mud-palette-primary);
  cursor: pointer;
}

.tek-messagebox-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tek-messagebox-icon {
  flex: 0 0 auto;
  margin-top: 2px;
}

.tek-messagebox-text {
  flex: 1 1 auto;
}

#blazor-error-ui {
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  display: none;
  width: 100%;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  background: lightyellow;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
}
#blazor-error-ui .dismiss {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  cursor: pointer;
}

.tek-toastui-editor,
.tek-toastui-editor > div,
.tek-toastui-editor .toastui-editor-defaultUI {
  height: 100%;
}

.tek-product-template-enabled.mud-checkbox {
  margin: 0;
  white-space: nowrap;
}

.tek-product-template-css.mud-input-control {
  margin: 0;
}

.tek-product-template-image-url.mud-input-control {
  grid-column: 3;
  width: 100%;
  margin: 0;
  min-width: 0;
}

.tek-product-template-image-url-actions {
  grid-column: 4;
  padding-left: 14px;
}

.tek-product-template-tooltip-content {
  max-width: 320px;
  white-space: normal;
  text-align: left;
  line-height: 1.35;
}

.tek-shop-data-grid thead .mud-table-cell {
  border-bottom: 1px solid #036326;
  color: #036326;
  background: #73d496;
  font-weight: 700;
}

.tek-shop-data-grid thead .mud-table-cell + .mud-table-cell {
  border-left: 1px solid #036326;
}

.tek-tabs .mud-tabs-toolbar,
.tek-tabs .mud-tabs-tabbar {
  position: relative;
  overflow: visible;
  border-bottom: 0;
}
.tek-tabs .mud-tabs-toolbar::after,
.tek-tabs .mud-tabs-tabbar::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #036326;
  content: "";
}
.tek-tabs .mud-tabs-toolbar .mud-tooltip-root,
.tek-tabs .mud-tabs-tabbar .mud-tooltip-root {
  margin-right: 0.5rem;
}
.tek-tabs .mud-tabs-panels {
  padding: 16px;
}
.tek-tabs .mud-tabs-toolbar-content,
.tek-tabs .mud-tabs-tabbar-content {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.tek-tabs .mud-tabs-tabbar-wrapper {
  align-items: self-end;
  min-height: 40px;
  margin-left: 1rem;
}
.tek-tabs .mud-tab-slider {
  display: none;
}
.tek-tabs .mud-tab {
  position: relative;
  min-height: 32px;
  border: 1px solid #036326;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  font-weight: 600;
}
.tek-tabs .mud-tab.mud-tab-active {
  z-index: 2;
  border: 2px solid #036326;
  border-bottom: 0;
  color: #036326;
  background: var(--mud-palette-surface);
  font-weight: 700;
}
.tek-tabs .mud-tab.mud-disabled {
  border-color: silver;
}

.tek-product-identifier-header-select .mud-input-control-input-container,
.tek-product-identifier-header-select .mud-input {
  min-height: 32px;
}

.tek-product-identifier-header-select .mud-input-slot {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 700;
}

.tek-product-aggregate-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}
.tek-product-aggregate-header .tek-product-aggregate-header-select {
  width: 8rem;
}
.tek-product-aggregate-header .tek-product-aggregate-header-select .mud-input-control-input-container,
.tek-product-aggregate-header .tek-product-aggregate-header-select .mud-input {
  min-height: 32px;
}
.tek-product-aggregate-header .tek-product-aggregate-header-select .mud-input-slot {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 700;
}

.tek-product-aggregate-filter-menu {
  min-width: 18rem;
  max-width: 32rem;
}
.tek-product-aggregate-filter-menu .mud-list-item-text {
  white-space: normal;
}

.tek-category-aggregate-header-select {
  width: 8rem;
}
.tek-category-aggregate-header-select .mud-input-control-input-container,
.tek-category-aggregate-header-select .mud-input {
  min-height: 32px;
}
.tek-category-aggregate-header-select .mud-input-slot {
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 700;
}

.tek-category-aggregate-filter-menu {
  min-width: 18rem;
  max-width: 32rem;
}
.tek-category-aggregate-filter-menu .mud-list-item-text {
  white-space: normal;
}

.tek-product-panel-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  width: 30%;
  min-width: 220px;
  max-width: 360px;
  border-style: solid;
  border-color: #036326;
  border-width: 2px 2px 0 2px;
  border-radius: 4px 4px 0 0;
  background: var(--mud-palette-surface);
}
.tek-product-panel-tab--with-width-menu {
  padding-right: 42px;
}
.tek-product-panel-tab::after {
  position: absolute;
  right: 2px;
  bottom: -2px;
  left: 2px;
  height: 2px;
  background: var(--mud-palette-surface);
  content: "";
}
.tek-product-panel-tab input {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-width: 0;
}
.tek-product-panel-tab .mud-input.mud-input-filled.mud-input-underline::before {
  border-bottom: none;
}
.tek-product-panel-tab .tek-product-panel-tab-select.mud-input-control {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin: 0;
}
.tek-product-panel-tab .tek-product-panel-tab-select .mud-input-control-input-container,
.tek-product-panel-tab .tek-product-panel-tab-select .mud-input {
  min-height: 32px;
}
.tek-product-panel-tab .tek-product-panel-tab-select .mud-input {
  border-radius: 4px 4px 0 0;
  background: var(--mud-palette-surface);
}
.tek-product-panel-tab .tek-product-panel-tab-select .mud-input-slot {
  padding-top: 0;
  padding-bottom: 0;
}
.tek-product-panel-tab .tek-product-panel-tab-select .mud-select-input {
  font-weight: 700;
}
.tek-product-panel-tab .tek-product-panel-tab-select .mud-input-outlined-border {
  border-color: #036326 !important;
  border-width: 2px !important;
  border-bottom-color: var(--mud-palette-surface) !important;
}

.tek-product-panel-width-trigger {
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 6px;
  width: 22px;
  height: 22px;
}
.tek-product-panel-width-trigger .mud-menu {
  width: 22px;
  height: 22px;
}

.tek-product-panel-width-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid #036326;
  border-radius: 4px;
  background: #d7eade;
  color: #036326;
  font: inherit;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
}
.tek-product-panel-width-button:hover, .tek-product-panel-width-button:focus-visible {
  border-color: #036326;
  background: color-mix(in srgb, #d7eade 75%, #036326 25%);
  outline: none;
}

.tek-product-panel-width-popover {
  min-width: 18rem;
  padding: 8px 0;
}
.tek-product-panel-width-popover .mud-list {
  padding: 0;
}
.tek-product-panel-width-popover .mud-list-item-text {
  width: 100%;
}

.tek-product-panel-width-menu-title {
  padding: 6px 16px 10px;
  font-weight: 700;
}

.tek-product-panel-width-option {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.tek-product-panel-width-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--mud-palette-divider);
  border-radius: 4px;
  font-weight: 700;
}

.tek-product-panel-width-copy {
  display: grid;
  min-width: 0;
}

.tek-product-panel-width-label {
  font-weight: 600;
}

.tek-product-panel-width-description {
  color: var(--mud-palette-text-secondary);
  font-size: 0.78rem;
}

.tek-product-panel-width-option-selected {
  background: #d7eade;
}
.tek-product-panel-width-option-selected .tek-product-panel-width-code {
  border-color: #036326;
  color: #036326;
}
.tek-product-panel-width-option-selected .tek-product-panel-width-label {
  color: #036326;
}

.tek-product-category-assignment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 4px 0 4px 8px;
  border-bottom: 1px solid var(--mud-palette-divider);
}
.tek-product-category-assignment .mud-typography {
  overflow-wrap: anywhere;
}

.tek-product-channel-availability-row {
  min-width: 0;
  min-height: 36px;
  gap: 12px;
  padding-left: 4px;
  border-bottom: 1px solid var(--mud-palette-divider);
}
.tek-product-channel-availability-row .mud-input-control {
  min-width: 0;
}
.tek-product-channel-availability-row .mud-typography {
  font-family: var(--mud-typography-body2-family);
  font-size: var(--mud-typography-body2-size);
  font-weight: var(--mud-typography-body2-weight);
  line-height: var(--mud-typography-body2-lineheight);
  letter-spacing: var(--mud-typography-body2-letterspacing);
  overflow-wrap: anywhere;
}

.tek-product-image-upload-button {
  position: relative;
  display: inline-flex;
}
.tek-product-image-upload-button .mud-button {
  width: 100%;
}

.tek-product-image-preview-size {
  margin-left: 4px;
}
.tek-product-image-preview-size .mud-tooltip-root {
  display: inline-flex;
  width: 32px;
  height: 32px;
}
.tek-product-image-preview-size .mud-toggle-item {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0;
}

.tek-media-preview-button .mud-icon-root {
  width: calc(var(--tek-media-preview-size) * 0.55);
  height: calc(var(--tek-media-preview-size) * 0.55);
  font-size: calc(var(--tek-media-preview-size) * 0.55);
}

.tek-product-image-tabs,
.tek-product-image-tabs .mud-tabs-tabbar,
.tek-product-image-tabs .mud-tabs-tabbar-inner,
.tek-product-document-tabs,
.tek-product-document-tabs .mud-tabs-tabbar,
.tek-product-document-tabs .mud-tabs-tabbar-inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mud-tabs-tabbar .mud-tabs-tabbar-inner {
  min-height: 30px;
}

.tek-product-image-tabs .mud-tabs-tabbar-content,
.tek-product-image-tabs .mud-tabs-tabbar-wrapper,
.tek-product-document-tabs .mud-tabs-tabbar-content,
.tek-product-document-tabs .mud-tabs-tabbar-wrapper {
  max-width: 100%;
  min-width: 0;
}

.tek-product-image-tabs .mud-tabs-tabbar-wrapper,
.tek-product-document-tabs .mud-tabs-tabbar-wrapper {
  margin-left: 0;
  align-items: flex-end;
}

.tek-product-image-tabs .mud-tabs-tabbar-wrapper > .mud-tooltip-root > .mud-tab,
.tek-product-document-tabs .mud-tabs-tabbar-wrapper > .mud-tooltip-root > .mud-tab {
  height: 100%;
}

.tek-product-image-tabs .mud-tabs-tabbar,
.tek-product-image-tabs .mud-tabs-tabbar-content,
.tek-product-document-tabs .mud-tabs-tabbar,
.tek-product-document-tabs .mud-tabs-tabbar-content {
  overflow: hidden;
}

@container product-images (max-width: 52rem) {
  .tek-product-images-toolbar {
    justify-content: flex-start;
  }
  .tek-product-images-toolbar > .mud-button,
  .tek-product-image-upload-button {
    flex: 0 0 auto;
  }
  .tek-product-image-preview-size {
    margin-left: auto;
  }
}
@container product-documents (max-width: 52rem) {
  .tek-product-documents-toolbar {
    justify-content: flex-start;
  }
  .tek-product-documents-toolbar > .mud-button {
    flex: 0 0 auto;
  }
}
.tek-product-image-metadata-dialog .mud-dialog-content,
.tek-product-document-metadata-dialog .mud-dialog-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 70vh;
  min-height: 32rem;
  overflow: hidden;
}

.tek-product-image-metadata-dialog .mud-dialog-actions,
.tek-product-document-metadata-dialog .mud-dialog-actions {
  padding-left: 24px;
  padding-right: 24px;
}

.tek-lightbox-dialog .mud-dialog-content {
  padding: 0;
}

.tek-lightbox-close .mud-icon-button-label,
.tek-lightbox-nav-prev .mud-icon-button-label,
.tek-lightbox-nav-next .mud-icon-button-label {
  color: white;
}

.tek-filter-item > .mud-input-control,
.tek-filter-item .mud-input-control,
.tek-filter-item .mud-input-control-input-container,
.tek-filter-item .mud-input,
.tek-filter-item .mud-select,
.tek-filter-item .mud-picker,
.tek-filter-item .mud-picker-input-root,
.tek-filter-item .mud-input-slot,
.tek-filter-item input {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  box-sizing: border-box;
}

.tek-filter-actions .mud-button {
  min-height: 40px;
}

.tek-single-line-control-row .mud-input-control-input-container,
.tek-single-line-control-row .mud-input,
.tek-single-line-control-row .mud-select,
.tek-single-line-control-row .mud-button {
  min-height: 56px;
}

.tek-single-line-control-row .mud-button {
  align-self: flex-end;
}

.tek-disabled-field .mud-input-slot,
.tek-disabled-field input,
.tek-disabled-field textarea {
  color: var(--mud-palette-text-secondary);
  -webkit-text-fill-color: var(--mud-palette-text-secondary);
  opacity: 1;
}
.tek-disabled-field .mud-input.mud-disabled {
  background: var(--mud-palette-background-grey);
  border-radius: var(--mud-default-border-radius);
}
.tek-disabled-field .mud-input.mud-input-outlined.mud-disabled .mud-input-outlined-border {
  border-style: dashed;
  border-color: var(--mud-palette-divider);
}

.tek-form-switch .mud-input-control {
  margin: 0;
}

.tek-shop-data-grid .mud-table-row:has(.mud-input-control) .mud-input-control {
  margin: 0;
}

.tek-shop-data-grid .mud-table-row:has(.mud-input-control) input::placeholder {
  color: transparent;
}

.tek-shop-data-grid .mud-table-row:has(.mud-input-control) .mud-input,
.tek-shop-data-grid .mud-table-row:has(.mud-input-control) .mud-input-control-input-container {
  min-height: 28px;
  height: 28px;
}

.tek-shop-data-grid .mud-table-row:has(.mud-input-control) .mud-input-slot {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.85rem;
}

.tek-shop-data-grid .mud-table-row:has(.mud-input-control) .mud-grid-cell {
  padding: 2px 4px;
}

.tek-data-grid-page-size .mud-input,
.tek-data-grid-page-size .mud-input-control-input-container,
.tek-data-grid-page-select .mud-input,
.tek-data-grid-page-select .mud-input-control-input-container {
  min-height: 36px;
  height: 36px;
}

.tek-data-grid-page-size .mud-input-slot,
.tek-data-grid-page-select .mud-input-slot {
  padding-top: 0;
  padding-bottom: 0;
}

.tek-data-grid-page-select .mud-input,
.tek-data-grid-page-select .mud-input-control-input-container {
  background: var(--mud-palette-surface);
  border-radius: var(--mud-default-border-radius);
}

.tek-data-grid-page-select .mud-input-outlined-border {
  border-color: var(--mud-palette-secondary) !important;
}

.tek-data-grid-page-select .mud-select-input,
.tek-data-grid-page-select .mud-input-slot,
.tek-data-grid-page-select .mud-input-adornment {
  color: var(--mud-palette-secondary) !important;
}

.tek-data-grid-page-select .mud-input-adornment .mud-icon-root {
  fill: var(--mud-palette-secondary) !important;
}

.tek-panel-header .mud-select {
  background: var(--mud-palette-background-grey);
  border-radius: var(--mud-default-border-radius);
}

.tek-panel-header .mud-select-input {
  font-weight: 500;
}

.tek-confirm-dialog .mud-dialog-content {
  padding: 14px 28px 22px;
}

.tek-messagebox-text .mud-checkbox {
  margin-left: -16px;
}

.tek-messagebox-text .mud-input-control.mud-input-control-boolean-input {
  margin-top: 6px;
}

.tek-confirm-dialog .mud-dialog-title {
  padding: 24px 28px 12px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.tek-confirm-dialog .mud-dialog-actions {
  padding: 18px 28px 22px;
  border-top: 1px solid var(--mud-palette-divider);
}

.tek-confirm-dialog .mud-dialog-actions .mud-button {
  min-width: 96px;
}

.tek-markdown-editor-dialog .mud-dialog-content {
  display: flex;
  flex-direction: column;
  height: 70vh;
  min-height: 32rem;
  overflow: hidden;
}

.tek-markdown-editor-dialog .mud-dialog-actions {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 900px) {
  .tek-product-panel-tab-select.mud-input-control {
    width: 100%;
  }
  .tek-product-template-css.mud-input-control {
    grid-column: 1/-1;
    max-width: 100px;
  }
  .tek-product-template-image-url.mud-input-control {
    grid-column: 1/-1;
    max-width: 100%;
  }
  .tek-product-template-image-url-actions {
    grid-column: 2;
  }
}
.mud-button-root {
  min-height: 32px;
  border-radius: 4px;
}

.mud-icon-root {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.tek-nav-icon.mud-icon-root {
  flex-basis: 18px;
  width: 18px;
  height: 18px;
}

.mud-icon-button-size-small {
  width: 30px;
  height: 30px;
  padding: 6px;
}

.tek-tabs .mud-tab {
  min-height: 32px;
  padding: 0 14px;
}

.tek-shop-data-grid .mud-table-cell {
  padding: 6px 10px;
  border-bottom-width: 1px;
}

.tek-shop-data-grid .mud-table-pagination {
  min-height: 40px;
}