@charset "UTF-8";
:root {
  color-scheme: light;
  --color-background: #f7f8fa;
  --color-surface: #ffffff;
  --color-sidebar: #f2f4f6;
  --color-surface-muted: #f3f5f7;
  --color-surface-hover: #fafbfc;
  --color-surface-selected: #e3e8ec;
  --color-text: #252a31;
  --color-muted: #68707b;
  --color-border: #d9dde3;
  --color-border-strong: #b8bec7;
  --color-primary: #315f7d;
  --color-primary-hover: #24485f;
  --color-primary-soft: #e6eff5;
  --color-on-accent: #ffffff;
  --color-danger: #9b3f3f;
  --color-danger-background: #f8eaea;
  --color-danger-border: #e5bcbc;
  --color-success: #3f704d;
  --color-success-background: #eaf4ed;
  --color-success-border: #bdd7c4;
  --color-status-background: #edf1f4;
  --color-status-text: #4f5964;
  --color-warning-background: #fff1d6;
  --color-warning-text: #805b10;
  --color-focus-ring: rgb(49 95 125 / 18%);
  --color-dashboard-accent: #8aa9bc;
  --color-note-yellow: #fff3a6;
  --color-note-pink: #ffdce5;
  --color-note-blue: #dceeff;
  --color-note-green: #dff3dc;
  --color-note-purple: #eadfff;
  --color-note-orange: #ffe3bd;
  --color-note-text: #252a31;
  --color-note-meta: rgb(24 32 38 / 61%);
  --color-note-field: rgb(255 255 255 / 38%);
  --color-note-field-border: rgb(24 32 38 / 20%);
  --color-shadow: rgb(29 41 52 / 10%);
  --color-backdrop: rgb(0 0 0 / 25%);
}

:root[data-theme=dark] {
  color-scheme: dark;
  --color-background: #1d1f1b;
  --color-surface: #292b25;
  --color-sidebar: #23251f;
  --color-surface-muted: #30322b;
  --color-surface-hover: #34362f;
  --color-surface-selected: #3b3d34;
  --color-text: #e6dfcf;
  --color-muted: #aaa491;
  --color-border: #414339;
  --color-border-strong: #5b5d50;
  --color-primary: #b29b68;
  --color-primary-hover: #d0bb85;
  --color-primary-soft: #3a392f;
  --color-on-accent: #1d1f1b;
  --color-danger: #d08a7d;
  --color-danger-background: #412c29;
  --color-danger-border: #70463f;
  --color-success: #9ab48f;
  --color-success-background: #2c392d;
  --color-success-border: #4a654c;
  --color-status-background: #393b33;
  --color-status-text: #c5bead;
  --color-warning-background: #443b27;
  --color-warning-text: #d8bf82;
  --color-focus-ring: rgb(178 155 104 / 24%);
  --color-dashboard-accent: #887b5f;
  --color-note-yellow: #51482e;
  --color-note-pink: #50383b;
  --color-note-blue: #34434b;
  --color-note-green: #394735;
  --color-note-purple: #443a4a;
  --color-note-orange: #513f2d;
  --color-note-text: #eee6d5;
  --color-note-meta: rgb(238 230 213 / 68%);
  --color-note-field: rgb(0 0 0 / 16%);
  --color-note-field-border: rgb(238 230 213 / 22%);
  --color-shadow: rgb(0 0 0 / 28%);
  --color-backdrop: rgb(0 0 0 / 52%);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-header {
  align-items: center;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  height: 52px;
  justify-content: space-between;
  left: 0;
  padding: 0 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1030;
}

.system-name {
  align-items: baseline;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  gap: 5px;
  letter-spacing: 0.035em;
}

.system-name:hover {
  text-decoration: none;
}

.system-name-owner {
  color: var(--color-primary);
  font-weight: 700;
}

.system-name-product {
  color: var(--color-text);
}

.system-name:hover .system-name-owner {
  color: var(--color-primary-hover);
}

.user-menu {
  align-items: center;
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.theme-toggle {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  color: var(--color-text);
  cursor: pointer;
  font-size: 12px;
  min-height: 30px;
  padding: 3px 7px;
}

.theme-toggle:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-focus-ring);
  outline: 0;
}

.user-menu form {
  margin: 0;
}

.user-role {
  background: var(--color-status-background);
  border-radius: 10px;
  color: var(--color-status-text);
  font-size: 11px;
  padding: 1px 7px;
  text-transform: uppercase;
}

.link-button {
  background: transparent;
  border: 0;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
}

.link-button:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.user-menu-separator {
  color: var(--color-border-strong);
}

.sidebar-toggle {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  color: var(--color-text);
  display: none;
  padding: 5px 10px;
}

.app-sidebar {
  background: var(--color-sidebar);
  border-right: 1px solid var(--color-border);
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 18px 12px;
  position: fixed;
  top: 52px;
  width: 224px;
  z-index: 1020;
}

.sidebar-section {
  margin-top: 24px;
}

.sidebar-section-title {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 10px 6px;
}

.sidebar-link {
  border-left: 3px solid transparent;
  color: var(--color-text);
  display: block;
  padding: 7px 10px;
}

.sidebar-link:hover {
  background: var(--color-surface-hover);
  color: var(--color-text);
  text-decoration: none;
}

.sidebar-link.is-active {
  background: var(--color-surface-selected);
  border-left-color: var(--color-primary);
  color: var(--color-primary-hover);
  font-weight: 600;
}

.sidebar-link-with-count {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.sidebar-count {
  background: var(--color-danger);
  border-radius: 12px;
  color: var(--color-on-accent);
  flex: 0 0 auto;
  font-size: 11px;
  line-height: 1;
  min-width: 22px;
  padding: 4px 6px;
  text-align: center;
}

.app-main {
  margin-left: 224px;
  min-height: 100vh;
  overflow-x: auto;
  padding: calc(52px + 28px) 32px 40px;
}

.sidebar-backdrop {
  display: none;
}

.page-container {
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
}

.page-back-button {
  margin-bottom: 12px;
}

.narrow-page,
.auth-page {
  max-width: 520px;
}

.auth-page {
  margin: 20px auto 0;
}

.page-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
}

.page-header h1 {
  color: var(--color-text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.page-description {
  color: var(--color-muted);
  margin: 5px 0 0;
}

.section-header {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
}

.section-header h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.summary-list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 22px;
}

.summary-item {
  border-right: 1px solid var(--color-border);
  padding: 13px 16px;
}

.summary-item:last-child {
  border-right: 0;
}

.summary-item dt {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
}

.summary-item dd {
  font-size: 20px;
  font-weight: 600;
  margin: 2px 0 0;
}

.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: 18px;
}

.empty-state {
  color: var(--color-muted);
  padding: 24px 16px;
}

.error-page {
  max-width: 680px;
  padding-top: 48px;
}

.error-path {
  background: var(--color-status-background);
  border: 1px solid var(--color-border);
  font-family: monospace;
  overflow-wrap: anywhere;
  padding: 9px 12px;
}

.document-frame {
  border: 0;
  height: 75vh;
  min-height: 520px;
  width: 100%;
}

.button {
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  line-height: 1.4;
  padding: 7px 14px;
  text-align: center;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-on-accent);
}

.button-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-on-accent);
}

.button-secondary {
  background: var(--color-surface);
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.button-danger {
  background: var(--color-danger);
  border-color: var(--color-danger);
  color: var(--color-on-accent);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-control {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  color: var(--color-text);
  display: block;
  min-height: 38px;
  padding: 7px 9px;
  width: 100%;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-focus-ring);
  outline: 0;
}

.form-actions {
  border-top: 1px solid var(--color-border);
  margin-top: 22px;
  padding-top: 16px;
}

.alert {
  border: 1px solid var(--color-border);
  border-radius: 3px;
  margin-bottom: 18px;
  padding: 10px 12px;
}

.alert-error {
  background: var(--color-danger-background);
  border-color: var(--color-danger-border);
  color: var(--color-danger);
}

.alert-success {
  background: var(--color-success-background);
  border-color: var(--color-success-border);
  color: var(--color-success);
}

.upload-progress {
  margin-top: 14px;
}

.upload-progress-heading {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  font-size: 12px;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 6px;
}

.upload-progress-track {
  background: var(--color-status-background);
  height: 7px;
  overflow: hidden;
}

.upload-progress-bar {
  background: var(--color-primary);
  height: 100%;
  transition: width 0.2s ease;
  width: 0;
}

.upload-error {
  margin: 14px 0 0;
}

[data-upload-submit]:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.upload-progress[hidden],
.upload-error[hidden] {
  display: none;
}

.panel-body {
  padding: 16px;
}

.form-grid {
  display: grid;
  gap: 0 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-table {
  border: 0;
}

.table-actions form {
  margin: 0;
}

.table-responsive {
  border: 1px solid var(--color-border);
  overflow-x: auto;
}

.data-table {
  background: var(--color-surface);
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--color-surface-muted);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:hover {
  background: var(--color-surface-hover);
}

.table-primary-link {
  font-weight: 600;
}

.table-actions {
  text-align: right !important;
  white-space: nowrap;
  width: 90px;
}

.empty-table-cell {
  color: var(--color-muted);
  text-align: center !important;
}

.badge {
  background: var(--color-status-background);
  border-radius: 10px;
  color: var(--color-status-text);
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
}

.badge-working {
  background: var(--color-primary-soft);
  color: var(--color-primary-hover);
}

.badge-blocked {
  background: var(--color-danger-background);
  color: var(--color-danger);
}

.badge-done {
  background: var(--color-success-background);
  color: var(--color-success);
}

.narrow-content-page {
  max-width: 850px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.page-actions,
.filter-bar,
.filter-actions {
  align-items: flex-end;
  display: flex;
  gap: 8px;
}

.page-actions form {
  margin: 0;
}

.filter-bar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: 18px;
  padding: 14px;
}

.filter-bar-wrap {
  flex-wrap: wrap;
}

.filter-field {
  min-width: 190px;
}

.filter-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.filter-search {
  flex: 1;
}

.user-role-form {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0;
  min-width: 190px;
}

.user-role-form .form-control {
  height: 30px;
  min-width: 110px;
  padding: 3px 7px;
}

.user-role-form .link-button {
  font-size: 11px;
}

.utility-permission-help {
  margin: 0 0 14px;
}

.utility-permission-list {
  border: 1px solid var(--color-border);
}

.utility-permission-item {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 11px 13px;
}

.utility-permission-item:last-child {
  border-bottom: 0;
}

.utility-permission-item:hover {
  background: var(--color-surface-hover);
}

.utility-permission-item input {
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}

.utility-permission-item strong,
.utility-permission-item small {
  display: block;
}

.utility-permission-item small {
  color: var(--color-muted);
  margin-top: 2px;
}

.danger-link {
  color: var(--color-danger);
}

.progress-value {
  font-size: 12px;
  margin-bottom: 3px;
}

.progress-track {
  background: var(--color-status-background);
  height: 5px;
  min-width: 80px;
  overflow: hidden;
  width: 100%;
}

.progress-track span {
  background: var(--color-primary);
  display: block;
  height: 100%;
}

.detail-grid {
  display: grid;
  gap: 18px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.detail-grid dt {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}

.detail-grid dd {
  margin: 0;
}

.detail-wide {
  grid-column: 1/-1;
}

.pre-wrap {
  white-space: pre-wrap;
}

.content-columns {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-help {
  color: var(--color-muted);
  display: block;
  margin-top: 4px;
}

.page-kicker {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 3px;
}

.badge-priority-high {
  background: var(--color-warning-background);
  color: var(--color-warning-text);
}

.blocked-detail {
  background: var(--color-danger-background);
  border-left: 3px solid var(--color-danger);
  padding: 10px 12px;
}

.blocked-detail p {
  color: var(--color-muted);
  font-size: 12px;
  margin: 6px 0 0;
}

.task-table {
  min-width: 980px;
}

.task-view-toolbar,
.section-header-actions,
.view-switcher,
.task-card-summary {
  align-items: center;
  display: flex;
}

.task-view-toolbar {
  color: var(--color-muted);
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-header-actions {
  gap: 14px;
}

.view-switcher {
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  overflow: hidden;
}

.view-switcher-button {
  background: var(--color-surface);
  border: 0;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
}

.view-switcher-button + .view-switcher-button {
  border-left: 1px solid var(--color-border-strong);
}

.view-switcher-button.is-active {
  background: var(--color-primary);
  color: var(--color-on-accent);
}

.task-board-panel .section-header {
  gap: 16px;
}

.section-description {
  color: var(--color-muted);
  font-size: 12px;
  margin: 3px 0 0;
}

.task-board-wrap {
  overflow-x: auto;
  padding: 14px;
}

.task-board {
  align-items: flex-start;
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(5, minmax(205px, 1fr));
  min-width: 1061px;
}

.task-board-three {
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  min-width: 780px;
}

.task-board-column {
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-top: 15px solid var(--color-border-strong);
  min-width: 0;
}

.task-board-column-working {
  border-top-color: var(--color-primary);
}

.task-board-column-blocked {
  border-top-color: var(--color-danger);
}

.task-board-column-done {
  border-top-color: var(--color-success);
}

.task-board-column-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 9px;
}

.task-board-column-header h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.task-board-count {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-muted);
  font-size: 11px;
  min-width: 22px;
  padding: 1px 6px;
  text-align: center;
}

.task-board-list {
  display: grid;
  gap: 7px;
  padding: 0 7px 7px;
}

.task-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 2px var(--color-shadow);
  padding: 8px;
}

.task-card:hover {
  border-color: var(--color-border-strong);
}

.task-card-summary {
  gap: 6px;
  justify-content: space-between;
  margin-bottom: 6px;
}

.task-card-request,
.task-card-id {
  font-size: 11px;
}

.task-card h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 6px;
}

.task-card-request {
  color: var(--color-muted);
  overflow-wrap: anywhere;
  text-align: right;
}

.task-card-meta {
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 3px;
  margin: 0;
  padding-top: 6px;
}

.task-card-meta > div {
  display: grid;
  gap: 6px;
  grid-template-columns: 60px minmax(0, 1fr);
}

.task-card-flow {
  align-items: center;
  display: grid;
  font-size: 11px;
  gap: 7px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.task-card-flow > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: left;
}

.task-card-flow > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.task-card-assignment {
  margin: 4px 0 0;
}

.task-card-dates {
  border-top: 1px solid var(--color-border);
  margin: 6px 0 0;
  padding-top: 6px;
}

.task-card-flow-separator {
  color: var(--color-muted);
  justify-self: center;
}

.task-card-meta dt,
.task-card-meta dd {
  font-size: 11px;
  margin: 0;
}

.task-card-meta dt {
  color: var(--color-muted);
}

.task-card-meta dd {
  overflow-wrap: anywhere;
  text-align: right;
}

.task-card-blocked {
  background: var(--color-danger-background);
  color: var(--color-danger);
  font-size: 11px;
  margin: 8px 0 0;
  padding: 6px 7px;
  white-space: pre-wrap;
}

.task-card-checklist {
  border: 1px solid var(--color-border);
  margin-top: 9px;
}

.task-card-checklist-header,
.task-card-todo {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.task-card-checklist-header {
  background: var(--color-surface-muted);
  color: var(--color-muted);
  font-size: 10px;
  padding: 5px 7px;
}

.task-card-todo {
  border-top: 1px solid var(--color-border);
  gap: 6px;
  justify-content: flex-start;
  min-height: 30px;
  padding: 4px 7px;
}

.task-card-todo form {
  margin: 0;
}

.task-card-todo button {
  background: transparent;
  border: 0;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0;
}

.task-card-todo > span {
  font-size: 11px;
  overflow-wrap: anywhere;
}

.task-card-todo.is-completed > span {
  color: var(--color-muted);
  text-decoration: line-through;
}

.task-card-checklist-empty {
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 10px;
  margin: 0;
  padding: 6px 7px;
}

.task-card-controls {
  align-items: center;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) minmax(82px, 0.85fr);
  margin-top: 7px;
  padding-top: 7px;
}

.task-card-status-form,
.task-card-progress {
  margin: 0;
  min-width: 0;
}

.task-card-status-form select {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
  min-width: 0;
  font-size: 11px;
  padding: 4px 5px;
  width: 100%;
}

.task-card-progress {
  align-items: center;
  display: grid;
  gap: 5px;
  grid-template-columns: 31px minmax(0, 1fr);
}

.task-card-progress output {
  color: var(--color-text);
  font-size: 10px;
  font-weight: 600;
}

.task-card-progress input[type=range] {
  accent-color: var(--color-primary);
  cursor: pointer;
  display: block;
  margin: 0;
  width: 100%;
}

.task-card-progress.is-locked input[type=range] {
  cursor: not-allowed;
  opacity: 0.6;
}

.task-card-status-readonly {
  justify-self: end;
}

.task-card-footer {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 6px;
}

.task-card-order-form {
  display: flex;
  gap: 3px;
  justify-self: end;
  margin: 0;
}

.task-card-order-form button {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 12px;
  height: 21px;
  line-height: 1;
  padding: 0;
  width: 23px;
}

.task-card-order-form button:hover:not(:disabled),
.task-card-order-form button:focus-visible {
  border-color: var(--color-primary);
}

.task-card-order-form button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.task-card-id {
  color: var(--color-muted);
  display: block;
  justify-self: start;
  line-height: 1;
  text-align: left;
}

.task-board-empty {
  color: var(--color-muted);
  font-size: 12px;
  margin: 0;
  padding: 10px 2px;
  text-align: center;
}

.compact-table {
  min-width: 520px;
}

.readonly-value {
  background: var(--color-status-background);
  border: 1px solid var(--color-border);
  min-height: 38px;
  margin: 0;
  padding: 8px 9px;
}

.checklist-summary {
  color: var(--color-muted);
  font-size: 12px;
}

.todo-alert {
  border-left: 0;
  border-right: 0;
  margin: 0;
}

.todo-create-form {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}

.todo-list {
  background: var(--color-surface);
}

.todo-item {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
  padding: 10px 16px;
}

.todo-item:last-child {
  border-bottom: 0;
}

.todo-item form {
  margin: 0;
}

.todo-toggle {
  background: transparent;
  border: 0;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 3px;
}

.todo-edit-form {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 8px;
}

.todo-edit-form .form-control {
  min-height: 34px;
}

.todo-actions {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.todo-item.is-completed .todo-edit-form input,
.todo-item.is-completed > span:last-child {
  color: var(--color-muted);
  text-decoration: line-through;
}

.todo-readonly-marker {
  color: var(--color-primary);
  font-size: 18px;
}

.my-work-section {
  margin-bottom: 22px;
}

.section-count {
  background: var(--color-status-background);
  border-radius: 10px;
  color: var(--color-status-text);
  font-size: 12px;
  font-weight: 600;
  min-width: 24px;
  padding: 2px 8px;
  text-align: center;
}

.section-count-danger {
  background: var(--color-danger-background);
  color: var(--color-danger);
}

.my-work-table {
  min-width: 720px;
}

.my-work-header {
  align-items: flex-end;
  gap: 20px;
}

.my-work-heading {
  flex: 0 0 auto;
  min-width: 260px;
}

.my-work-filter {
  background: transparent;
  border: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.my-work-filter .filter-field {
  min-width: 105px;
  width: 118px;
}

.my-work-filter .filter-search {
  flex: 0 1 175px;
  width: 175px;
}

.my-work-filter .filter-field label {
  font-size: 10px;
  margin-bottom: 2px;
}

.my-work-filter .form-control {
  font-size: 11px;
  height: 30px;
  padding: 3px 7px;
}

.my-work-filter .button {
  font-size: 11px;
  min-height: 30px;
  padding: 5px 9px;
}

.blocked-work-table {
  min-width: 680px;
}

.request-table {
  min-width: 820px;
}

.request-tabs {
  border-bottom: 1px solid var(--color-border-strong);
  display: flex;
  gap: 2px;
  margin-bottom: 18px;
  overflow-x: auto;
}

.request-tab {
  align-items: center;
  border-bottom: 3px solid transparent;
  color: var(--color-muted);
  display: flex;
  font-weight: 600;
  gap: 8px;
  margin-bottom: -1px;
  padding: 10px 14px;
  white-space: nowrap;
}

.request-tab:hover {
  background: var(--color-surface-muted);
  color: var(--color-text);
  text-decoration: none;
}

.request-tab.is-active {
  border-bottom-color: var(--color-primary);
  color: var(--color-primary-hover);
}

.request-tab-count {
  background: var(--color-danger);
  border-radius: 12px;
  color: var(--color-on-accent);
  font-size: 11px;
  line-height: 1;
  min-width: 22px;
  padding: 4px 6px;
  text-align: center;
}

.file-control {
  height: auto;
  padding: 6px;
}

.request-list-body {
  background: var(--color-surface);
}

.request-entry {
  border-bottom: 1px solid var(--color-border);
  padding: 11px 16px;
}

.request-entry:last-child {
  border-bottom: 0;
}

.request-entry p {
  margin: 6px 0 0;
}

.request-entry-meta,
.attachment-entry,
.activity-entry {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.request-entry-meta {
  color: var(--color-muted);
  font-size: 12px;
}

.panel-form-border {
  border-top: 1px solid var(--color-border);
}

.dashboard-project-list {
  background: var(--color-surface);
}

.dashboard-header {
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.dashboard-header > div:first-child {
  flex: 0 0 auto;
}

.dashboard-summary {
  flex: 0 1 650px;
  margin: 0;
  min-width: 520px;
}

.dashboard-summary .summary-item {
  padding: 7px 11px;
}

.dashboard-summary .summary-item dt {
  font-size: 10px;
  white-space: nowrap;
}

.dashboard-summary .summary-item dd {
  font-size: 17px;
  line-height: 1.2;
}

.dashboard-page > .panel > .section-header {
  background: var(--color-primary);
  border-bottom-color: var(--color-primary-hover);
  color: var(--color-on-accent);
  padding-bottom: 10px;
  padding-top: 10px;
}

.dashboard-projects-toggle {
  border: 1px solid currentColor;
  border-radius: 3px;
  color: var(--color-on-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
}

.dashboard-projects-toggle:hover,
.dashboard-projects-toggle:focus-visible {
  color: var(--color-on-accent);
}

.dashboard-project-item {
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
}

.dashboard-project-item.is-readonly {
  grid-template-columns: minmax(0, 1fr);
}

.dashboard-project-item:last-child {
  border-bottom: 0;
}

.dashboard-project {
  min-width: 0;
}

.dashboard-project-priority-form {
  align-content: center;
  background: var(--color-surface-muted);
  border-right: 1px solid var(--color-border);
  display: grid;
  gap: 4px;
  justify-items: center;
  margin: 0;
  padding: 6px;
}

.dashboard-project-priority-button {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 14px;
  height: 25px;
  line-height: 1;
  padding: 0;
  width: 25px;
}

.dashboard-project-priority-button:hover:not(:disabled),
.dashboard-project-priority-button:focus-visible {
  border-color: var(--color-primary);
}

.dashboard-project-priority-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.dashboard-project > summary {
  align-items: center;
  background: var(--color-surface-hover);
  border-left: 5px solid var(--color-dashboard-accent);
  cursor: pointer;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 2fr) minmax(130px, 1fr) minmax(90px, 0.7fr) minmax(100px, 0.7fr) auto;
  list-style: none;
  padding: 13px 16px;
}

.dashboard-project > summary::-webkit-details-marker {
  display: none;
}

.dashboard-project > summary:hover {
  background: var(--color-primary-soft);
}

.dashboard-project-name a,
.dashboard-project-name span,
.dashboard-project-label {
  display: block;
}

.dashboard-project-name span,
.dashboard-project-label {
  color: var(--color-muted);
  font-size: 11px;
}

.dashboard-project-toggle {
  border: 1px solid var(--color-border-strong);
  border-radius: 3px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 9px;
}

.dashboard-project .collapse-label,
.dashboard-project[open] .expand-label {
  display: none;
}

.dashboard-project[open] .collapse-label {
  display: inline;
}

.dashboard-activity-panel > summary {
  cursor: pointer;
  list-style: none;
}

.dashboard-activity-panel > summary::-webkit-details-marker {
  display: none;
}

.dashboard-activity-panel .collapse-label,
.dashboard-activity-panel[open] .expand-label {
  display: none;
}

.dashboard-activity-panel[open] .collapse-label {
  display: inline;
}

.dashboard-project-notes {
  background: var(--color-surface-muted);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px 16px;
}

.project-notes-section .dashboard-notes-toolbar {
  border-bottom: 2px solid var(--color-dashboard-accent);
  color: var(--color-primary-hover);
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.dashboard-notes-toolbar {
  align-items: center;
  color: var(--color-muted);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: space-between;
  min-height: 26px;
}

.dashboard-add-note {
  font-size: 11px;
  font-weight: 600;
}

.dashboard-note-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  margin-top: 6px;
}

.dashboard-note-list > .empty-state {
  grid-column: 1/-1;
}

.dashboard-notes-empty {
  background: transparent;
  border: 1px dashed var(--color-border-strong);
  color: var(--color-muted);
  font-size: 11px;
  padding: 10px;
  text-align: left;
}

.sticky-note {
  background: var(--color-note-yellow);
  border: 0;
  box-shadow: 0 2px 5px var(--color-shadow);
  color: var(--color-note-text);
  display: flex;
  flex-direction: column;
  min-height: 148px;
  padding: 11px 12px 8px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.sticky-note:hover,
.sticky-note:focus-within {
  box-shadow: 0 4px 10px var(--color-shadow);
  transform: translateY(-1px);
}

.sticky-note-yellow {
  background: var(--color-note-yellow);
}

.sticky-note-pink {
  background: var(--color-note-pink);
}

.sticky-note-blue {
  background: var(--color-note-blue);
}

.sticky-note-green {
  background: var(--color-note-green);
}

.sticky-note-purple {
  background: var(--color-note-purple);
}

.sticky-note-orange {
  background: var(--color-note-orange);
}

.sticky-note[hidden],
.sticky-note-edit-form[hidden],
[data-note-content][hidden],
[data-note-view-actions][hidden] {
  display: none;
}

.dashboard-note-meta {
  align-items: center;
  color: var(--color-note-meta);
  display: flex;
  font-size: 9px;
  gap: 8px;
  justify-content: space-between;
}

.sticky-note p {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  margin: 8px 0 12px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.sticky-note textarea {
  background: var(--color-note-field);
  border: 1px solid var(--color-note-field-border);
  color: var(--color-note-text);
  display: block;
  flex: 1;
  font: inherit;
  line-height: 1.5;
  min-height: 100px;
  padding: 7px;
  resize: vertical;
  width: 100%;
}

.sticky-note-edit-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 8px;
}

.sticky-note-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  min-height: 20px;
  opacity: 0.58;
  transition: opacity 0.15s ease;
}

.sticky-note:hover .sticky-note-actions,
.sticky-note:focus-within .sticky-note-actions {
  opacity: 1;
}

.sticky-note-actions .link-button {
  color: var(--color-primary);
  font-size: 10px;
  line-height: 1.4;
}

.sticky-note-actions form {
  margin: 0;
}

.sticky-note-actions .muted-link {
  color: var(--color-muted);
}

.sticky-note-actions .danger-link {
  color: var(--color-danger);
}

.admin-note-restricted {
  align-items: center;
  background: var(--color-surface-muted);
  color: var(--color-muted);
  display: flex;
  font-size: 12px;
  gap: 8px;
  min-height: 56px;
  padding: 14px 16px;
}

.admin-note-restricted strong {
  color: var(--color-text);
}

.task-admin-note {
  background: var(--color-note-yellow);
  box-shadow: 0 2px 5px var(--color-shadow);
  color: var(--color-note-text);
  margin: 14px;
  padding: 12px;
}

.task-admin-note textarea {
  background: var(--color-note-field);
  border: 1px solid var(--color-note-field-border);
  color: var(--color-note-text);
  display: block;
  line-height: 1.5;
  margin-bottom: 8px;
  min-height: 150px;
  padding: 8px;
  resize: vertical;
  width: 100%;
}

.task-admin-note .link-button {
  font-size: 11px;
  font-weight: 600;
}

.activity-filter {
  flex-wrap: wrap;
}

.activity-filter .filter-field {
  min-width: 145px;
}

.activity-filter-search {
  flex: 1 1 260px;
}

.activity-admin-page .activity-list {
  max-height: none;
}

.dashboard-activity-list,
.activity-list {
  background: var(--color-surface);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  max-height: 260px;
  overflow-y: auto;
}

.dashboard-activity-item,
.activity-list-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  font-size: 11px;
  gap: 10px;
  justify-content: space-between;
  line-height: 1.35;
  padding: 6px 10px;
}

.dashboard-activity-item:last-child,
.activity-list-item:last-child {
  border-bottom: 0;
}

.dashboard-activity-item strong,
.activity-list-item strong {
  font-size: 11px;
  margin-right: 5px;
}

.activity-list-item > div:first-child {
  min-width: 0;
}

.dashboard-activity-meta,
.activity-list-meta {
  color: var(--color-muted);
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  font-size: 10px;
  gap: 6px;
  text-align: right;
  white-space: nowrap;
}

.activity-value {
  color: var(--color-muted);
  font-size: 10px;
  margin-top: 1px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.activity-entity {
  font-size: 10px;
}

.activity-list > .empty-state {
  font-size: 11px;
  padding: 9px 10px;
}

.report-summary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.report-table {
  min-width: 760px;
}

.report-project-table {
  min-width: 720px;
}

.report-progress-cell {
  min-width: 120px;
}

.report-progress-cell > span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
}

.report-task-board {
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  min-width: 1348px;
}

.report-task-board-wrap {
  background: var(--color-surface-muted);
}

.report-task-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 7px solid var(--color-border-strong);
  box-shadow: 0 1px 3px var(--color-shadow);
  min-width: 0;
  padding: 12px;
}

.report-task-board .report-task-card {
  border-top-width: 1px;
}

.report-task-card-working {
  border-top-color: var(--color-primary);
}

.report-task-card-blocked {
  border-top-color: var(--color-danger);
}

.report-task-card-done {
  border-top-color: var(--color-success);
}

.report-task-card-cancelled {
  border-top-color: var(--color-muted);
}

.report-task-card-kicker,
.report-task-card-badges,
.report-task-progress > div:first-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.report-task-card-kicker {
  color: var(--color-muted);
  font-size: 10px;
}

.report-task-card h3 {
  font-size: 14px;
  line-height: 1.35;
  margin: 9px 0 7px;
  overflow-wrap: anywhere;
}

.report-task-card-badges {
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}

.report-task-progress {
  border-top: 1px solid var(--color-border);
  margin-top: 10px;
  padding-top: 8px;
}

.report-task-progress > div:first-child {
  font-size: 11px;
  margin-bottom: 4px;
}

@media (max-width: 767.98px) {
  .app-header {
    padding: 0 12px;
  }
  .sidebar-toggle {
    display: inline-block;
  }
  .system-name {
    font-size: 14px;
  }
  .app-sidebar {
    transform: translateX(-100%);
    transition: transform 0.15s ease;
  }
  .sidebar-open .app-sidebar {
    transform: translateX(0);
  }
  .sidebar-open .sidebar-backdrop {
    background: var(--color-backdrop);
    border: 0;
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 52px;
    z-index: 1010;
  }
  .app-main {
    margin-left: 0;
    padding: calc(52px + 20px) 14px 30px;
  }
  .summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-summary {
    flex: none;
    min-width: 0;
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar,
  .page-header {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .filter-field {
    min-width: 0;
    width: 100%;
  }
  .task-view-toolbar,
  .task-board-panel .section-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-header-actions {
    justify-content: space-between;
    width: 100%;
  }
  .todo-item,
  .todo-edit-form,
  .todo-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .todo-edit-form {
    min-width: calc(100% - 34px);
  }
  .dashboard-activity-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .dashboard-activity-meta {
    text-align: left;
  }
  .activity-list-item {
    gap: 6px;
  }
  .activity-list-meta {
    flex-direction: column;
    gap: 1px;
  }
  .dashboard-project > summary {
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-project-name,
  .dashboard-project-toggle {
    grid-column: 1/-1;
  }
  .dashboard-project-toggle {
    text-align: center;
  }
  .dashboard-note-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .report-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .report-summary .summary-item:nth-child(2n) {
    border-right: 0;
  }
  .report-summary .summary-item:last-child {
    border-top: 1px solid var(--color-border);
  }
  .detail-grid,
  .content-columns,
  .content-columns-three {
    grid-template-columns: 1fr;
  }
  .summary-item:nth-child(2) {
    border-right: 0;
  }
  .summary-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-border);
  }
}
.ota-create-panel {
  margin-bottom: 28px;
}

.ota-standalone-header {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-bottom: 0;
}

.ota-app-table code,
.ota-file-table code {
  color: var(--color-text);
  overflow-wrap: anywhere;
}

.ota-checkbox-group {
  margin-bottom: 0;
}

.ota-checkbox-label {
  align-items: center;
  display: inline-flex !important;
  gap: 8px;
}

.ota-checkbox-label input {
  height: 16px;
  width: 16px;
}

.ota-danger-panel {
  border-color: var(--color-danger-border);
  margin-top: 28px;
}

.ota-danger-panel p {
  margin-top: 0;
}

.ota-update-available {
  background: var(--color-warning-background);
  color: var(--color-warning-text);
}

.ota-summary-date {
  font-size: 14px !important;
}

.ota-url-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.ota-copy-row {
  align-items: stretch;
  display: flex;
  gap: 8px;
}

.ota-copy-row .form-control {
  font-family: monospace;
}

.ota-copy-row .button {
  flex: 0 0 auto;
}

.ota-feed-link {
  margin: 8px 0 0;
}

.ota-file-input {
  height: auto;
  padding: 6px;
}

.ota-release-list {
  margin-top: 0;
}

.ota-release {
  margin-bottom: 14px;
}

.ota-release-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 16px;
}

.ota-release-header form {
  margin: 0;
}

.ota-release-title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ota-release-title-row h3 {
  font-size: 16px;
  margin: 0;
}

.ota-release-meta {
  color: var(--color-muted);
  font-size: 12px;
  margin: 4px 0 0;
}

.ota-release-body {
  padding: 16px;
}

.ota-release-notes {
  margin: 0 0 14px;
}

.ota-file-table {
  min-width: 620px;
}

@media (max-width: 767.98px) {
  .ota-copy-row,
  .ota-release-header {
    align-items: stretch;
    flex-direction: column;
  }
  .ota-copy-row .button,
  .ota-release-header .button {
    align-self: flex-start;
  }
}
@media (max-width: 575.98px) {
  .user-name,
  .user-role,
  .user-menu-separator {
    display: none;
  }
}
@media (max-width: 420px) {
  .page-header h1 {
    font-size: 22px;
  }
}
.device {
  padding-top: 100px;
}

.title-faculity {
  color: white;
  font-size: 60%;
  font-weight: bold;
}

.title-school {
  color: azure;
  font-size: small;
  font-weight: bold;
}

.title-truong {
  position: relative;
}

.carousel-video {
  width: 100%; /* Không bao giờ vượt container */
  max-width: 100%; /* Bắt buộc nằm trong container */
  height: 100px; /* Giữ đúng chiều cao slide như trước */
  object-fit: cover; /* Zoom hợp lý, không méo */
  display: block;
  border-radius: 6px; /* Tùy chọn */
  background: #000;
}

.widget-button {
  display: block;
  height: 200px;
  width: 200px;
  position: relative;
  align-content: left;
  top: 0px;
  left: 0px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: white;
  text-underline-position: under;
  text-align: center;
  color: #343a40;
  font-family: inherit;
  line-height: 4;
  font-size: 18px;
  font-weight: bold;
}

.button-handle {
  display: flex;
  justify-content: center;
  align-content: center;
  min-height: 60vh;
  position: relative;
  top: 0px;
  left: 0px;
}

.my-switch {
  height: 41px;
  width: 90px;
  background: #a5b1af;
  appearance: none;
  border-radius: 26px;
  position: absolute;
  top: 20px;
  box-shadow: inset 0px 0px 16px rgba(0, 0, 0, 0.2);
}

.my-switch::before {
  content: "";
  height: 35px;
  width: 35px;
  background: #fdae61;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: 0.25s cubic-bezier(0.35, -1.19, 0.7, 2.06);
  box-shadow: inset 0px 0px 16px rgba(0, 0, 0, 0.2);
}

.my-switch:checked {
  background: #028374;
}

.my-switch:checked::before {
  left: 52px;
}

#device_1 {
  background: #e9e9eb;
  position: relative;
  top: 10px;
  height: 1300px;
}

.name-device {
  box-sizing: border-box;
  text-underline-position: under;
  margin-top: 10px;
  margin-bottom: 0.5rem;
  font-family: inherit;
  line-height: 1.2;
  text-align: left !important;
  color: #343a40;
  font-size: 18px;
  font-weight: bold;
}

#DASHBOARD {
  position: absolute;
  top: 0PX;
  left: 0px;
  background-color: #00695c;
  height: 50px;
}

#dashtext {
  position: absolute;
  top: 12px;
  left: 60px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

#encoder {
  position: relative;
  top: 80px;
  left: 10px;
}

#conveyer {
  position: relative;
  top: 110px;
  left: 10px;
}

#vitme {
  position: relative;
  top: 140px;
  left: 10px;
}

.widget-data {
  display: block;
  height: 85px;
  width: 430px;
  position: relative;
  align-content: left;
  top: 10px;
  left: 20px;
  border-radius: 10px;
  background-color: white;
  text-underline-position: under;
  text-align: center;
  color: #2166ac;
  font-family: inherit;
  line-height: 4;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
}

.input-label {
  position: absolute;
  left: 30px;
  box-sizing: border-box;
  text-underline-position: under;
  margin-top: 12px;
  margin-bottom: 0.5rem;
  font-family: inherit;
  line-height: 1.6;
  text-align: left !important;
  color: #2166ac;
  font-size: 18px;
  font-weight: bold;
}

.input-data {
  display: flex;
  width: 150px;
  height: 50px;
  background: #ffffff;
  position: absolute;
  top: 17px;
  left: 120px;
  border-radius: none;
}

.vitme {
  position: absolute;
  top: 70px;
  left: 235px;
}

.conveyer-speed {
  position: absolute;
  top: 185px;
  left: 235px;
}

.offset {
  position: absolute;
  top: 300px;
  left: 235px;
}

.SPARE {
  position: absolute;
  top: 415px;
  left: 235px;
}

.rec1 {
  display: block;
  height: 200px;
  width: 430px;
  position: absolute;
  align-content: left;
  top: 540px;
  left: 255px;
  border-radius: 10px;
  background-color: white;
  text-underline-position: under;
  text-align: center;
  color: #2166ac;
  font-family: inherit;
  line-height: 4;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
}

.rec2 {
  display: block;
  height: 662px;
  width: 370px;
  position: absolute;
  align-content: left;
  top: 80px;
  left: 715px;
  border-radius: 10px;
  background-color: white;
  text-underline-position: under;
  text-align: center;
  color: #2166ac;
  font-family: inherit;
  line-height: 4;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
}

#device_1 input[type=number] {
  text-align: center;
  font-size: 35px;
  color: black;
  height: 50px;
}

.title-pid {
  position: relative;
  top: 0px;
  left: 0px;
  height: 40px;
  background-color: #bd6003;
  color: white;
  text-align: center;
  line-height: 40px;
}

.text-pid {
  position: absolute;
  margin: none;
  height: 50px;
  left: 50px;
  height: 100px;
  text-align: left;
}

.pid-element {
  position: relative;
  top: 10px;
  margin-top: 10px;
  border: 2px #00695c;
}

.input-pid {
  position: relative;
  left: 80px;
}

.report-layout {
  display: block;
  height: 420px;
  width: 1060px;
  position: absolute;
  align-content: left;
  top: 770px;
  left: 25px;
  border-radius: 10px;
  background-color: white;
  text-underline-position: under;
  text-align: center;
  color: #2166ac;
  font-family: inherit;
  line-height: 4;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
}

#status-content {
  text-align: left;
  margin-top: 10px;
  size: 2px;
  line-height: 1.2px;
  color: black;
  font-weight: italic;
}

.rec3 {
  display: block;
  height: 430px;
  width: 430px;
  position: absolute;
  align-content: left;
  top: 80px;
  left: 255px;
  border-radius: 10px;
  background-color: white;
  text-underline-position: under;
  text-align: center;
  color: #2166ac;
  font-family: inherit;
  line-height: 4;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
}

.local-drive-page {
  max-width: 1040px;
}

.local-drive-upload-panel .panel-body {
  padding-bottom: 14px;
}

.local-drive-limits,
.local-drive-note,
.local-drive-selection,
.local-drive-list-header p,
.local-drive-item-meta {
  color: var(--color-muted);
  font-size: 12px;
}

.local-drive-picker {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-drive-hidden-input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.local-drive-selection {
  margin-top: 10px;
}

.local-drive-progress {
  background: var(--color-status-background);
  height: 5px;
  margin-top: 12px;
  overflow: hidden;
}

.local-drive-progress-bar {
  background: var(--color-primary);
  height: 100%;
  transition: width 0.2s ease;
  width: 0;
}

.local-drive-message[hidden],
.local-drive-progress[hidden] {
  display: none;
}

.local-drive-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-drive-list-header {
  gap: 16px;
}

.local-drive-list-header p {
  margin: 3px 0 0;
}

.local-drive-list {
  min-height: 64px;
}

.local-drive-folder,
.local-drive-file {
  border-bottom: 1px solid var(--color-border);
}

.local-drive-list > :last-child,
.local-drive-folder-children > :last-child {
  border-bottom: 0;
}

.local-drive-folder summary {
  cursor: pointer;
  list-style: none;
}

.local-drive-folder summary::-webkit-details-marker {
  display: none;
}

.local-drive-folder[open] > summary .local-drive-icon {
  transform: rotate(90deg);
}

.local-drive-folder-children {
  border-left: 2px solid var(--color-border);
  margin-left: 27px;
}

.local-drive-item {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 58px;
  padding: 9px 14px;
}

.local-drive-file:hover,
.local-drive-folder-summary:hover {
  background: var(--color-surface-hover);
}

.local-drive-item-info {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.local-drive-icon {
  color: var(--color-primary);
  display: inline-block;
  flex: 0 0 18px;
  font-size: 17px;
  text-align: center;
  transition: transform 0.15s ease;
}

.local-drive-item-name,
.local-drive-item-meta {
  display: block;
}

.local-drive-item-name {
  font-weight: 600;
  overflow-wrap: anywhere;
}

.local-drive-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.button-small {
  font-size: 12px;
  padding: 5px 9px;
}

.local-drive-note {
  margin: -5px 0 0;
}

@media (max-width: 767.98px) {
  .local-drive-limits {
    display: none;
  }
  .local-drive-summary {
    grid-template-columns: 1fr;
  }
  .local-drive-summary .summary-item {
    border-bottom: 1px solid var(--color-border);
    border-right: 0;
  }
  .local-drive-summary .summary-item:last-child {
    border-bottom: 0;
  }
  .local-drive-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .local-drive-actions {
    padding-left: 28px;
  }
  .local-drive-folder-children {
    margin-left: 14px;
  }
}
.kaizen-section-nav {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.kaizen-section-nav a {
  border-bottom: 2px solid transparent;
  color: var(--color-text);
  font-weight: 600;
  padding: 8px 0;
}

.kaizen-section-nav a:hover,
.kaizen-section-nav a:focus-visible,
.kaizen-section-nav a.is-active {
  border-bottom-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.kaizen-permissions,
.kaizen-new-helper,
.kaizen-section {
  margin-bottom: 28px;
}

.kaizen-package-list {
  margin-top: 14px;
}

.kaizen-package-name,
.kaizen-version h4 {
  margin: 0;
}

.kaizen-package {
  margin-bottom: 10px;
}

.kaizen-package-summary {
  cursor: pointer;
  display: list-item;
  padding: 14px 16px;
}

.kaizen-package-summary::marker {
  color: var(--color-primary);
}

.kaizen-package-summary:hover,
.kaizen-package-summary:focus-visible {
  background: var(--color-surface-hover);
}

.kaizen-package-summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.kaizen-package-name {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
}

.kaizen-package-count {
  color: var(--color-muted);
  float: right;
  font-size: 12px;
  margin-left: 16px;
  padding-top: 3px;
}

.kaizen-package-content {
  border-top: 1px solid var(--color-border);
}

.kaizen-package-description {
  color: var(--color-muted);
  margin: 0;
  padding: 14px 16px;
}

.kaizen-package-description + .kaizen-release-form {
  border-top: 1px solid var(--color-border);
}

.kaizen-package-description + .kaizen-version-list {
  border-top: 1px solid var(--color-border);
}

.kaizen-release-form {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 16px;
}

.kaizen-release-form summary {
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 600;
}

.kaizen-release-form form {
  margin-top: 16px;
}

.form-group-wide {
  grid-column: 1/-1;
}

.kaizen-version-list {
  padding: 0 16px;
}

.kaizen-version {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.kaizen-version:last-child {
  border-bottom: 0;
}

.kaizen-version-heading {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.kaizen-version-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.kaizen-version-actions form {
  margin: 0;
}

.kaizen-version h4 {
  font-size: 14px;
}

.kaizen-version-meta,
.kaizen-file-name {
  color: var(--color-muted);
  font-size: 12px;
  margin: 3px 0 0;
}

.kaizen-file-name {
  overflow-wrap: anywhere;
}

.kaizen-change-notes {
  margin-top: 10px;
  white-space: pre-wrap;
}

@media (max-width: 767.98px) {
  .kaizen-version-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .kaizen-version-heading .button {
    align-self: flex-start;
  }
}

/*# sourceMappingURL=app.css.map */
