.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-stat-card {
  display: flex;
  min-height: 132px;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--body-color);
  background: var(--body-bg);
  text-decoration: none;
}
.dashboard-stat-card:hover {
  border-color: var(--color-primary);
  color: var(--body-color);
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .dashboard-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .dashboard-stat-grid {
    grid-template-columns: 1fr;
  }
}
.dashboard-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.dashboard-stat-value {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.dashboard-stat-action {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}
.dashboard-stat-action.is-muted {
  color: var(--text-muted);
}

.sheet-document-fields {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 8px 20px;
  margin: 0;
}

.sheet-document-fields__row {
  display: contents;
}

.sheet-document-fields dt {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.sheet-document-fields dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.dashboard-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-stat-grid {
  margin-bottom: 22px;
}

.dashboard-stat-card--danger .dashboard-stat-value,
.dashboard-stat-card--danger .dashboard-stat-action {
  color: var(--bs-danger);
}

.dashboard-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.dashboard-panel {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--body-bg);
}

.dashboard-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-panel__header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.dashboard-panel__header a {
  flex: none;
  font-size: 13px;
  font-weight: 600;
}

.dashboard-empty {
  margin: 0;
  color: var(--text-muted);
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

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

.dashboard-table th {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-table td {
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.dashboard-table .badge {
  white-space: normal;
}

@media (max-width: 1199.98px) {
  .dashboard-panel-grid {
    grid-template-columns: 1fr;
  }
}
.failed-messages-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.failed-messages-list {
  display: grid;
  gap: 12px;
}

.failed-message-card {
  background: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px;
}

.failed-message-card__header {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.failed-message-card__title {
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.failed-message-card__id {
  color: var(--text-muted);
  display: inline-block;
  margin-top: 4px;
}

.failed-message-card__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.failed-message-card__meta {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 16px 0;
}

.failed-message-card__meta div {
  background: var(--table-thead-bg);
  border-radius: 6px;
  padding: 10px 12px;
}

.failed-message-card__meta dt {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.failed-message-card__meta dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.failed-message-card__diagnostics {
  background: var(--table-thead-bg);
  border-radius: 6px;
  padding: 12px;
}

.failed-message-card__exception {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.failed-message-card__message {
  margin-top: 6px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.failed-message-card__code {
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .failed-message-card__header,
  .failed-message-card__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .failed-message-card__meta {
    grid-template-columns: 1fr;
  }
}
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.96), rgba(17, 24, 39, 0.98)), #111827;
  color: #111827;
}

.login-panel {
  width: min(100%, 420px);
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.login-panel__header {
  margin-bottom: 24px;
}

.login-panel__brand {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  color: #4f46e5;
  text-transform: uppercase;
}

.login-panel__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.login-alert {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 6px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 14px;
  line-height: 1.4;
}

.login-alert--info {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e40af;
}

.login-alert a {
  color: inherit;
  font-weight: 600;
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-form__field {
  display: grid;
  gap: 8px;
}

.login-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.login-form__field input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-form__field input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.16);
}

.login-form__remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
}

.login-form__remember input {
  width: 16px;
  height: 16px;
  accent-color: #4f46e5;
}

.login-form__submit {
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #4f46e5;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.login-form__submit:hover {
  background: #4338ca;
}

.login-form__submit:active {
  transform: translateY(1px);
}

@media (max-width: 480px) {
  .login-panel {
    padding: 24px;
  }
  .login-panel__title {
    font-size: 24px;
  }
}
.sheet-document-detail-empty {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.sheet-document-fields {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 0;
  max-width: 980px;
  margin: 0;
}

.sheet-document-fields__row {
  display: contents;
}

.sheet-document-fields dt,
.sheet-document-fields dd {
  padding: 9px 0;
  border-bottom: 1px solid var(--border-color);
}

.sheet-document-fields__row:last-child dt,
.sheet-document-fields__row:last-child dd {
  border-bottom: 0;
}

.sheet-document-fields dt {
  margin: 0;
  padding-right: 18px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.sheet-document-fields dd {
  min-width: 0;
  margin: 0;
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.4;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.sheet-document-pre {
  max-width: 980px;
  max-height: 520px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  border: 0;
  border-radius: 0;
  background: var(--bs-light);
  color: var(--body-color);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.sheet-document-validation-details {
  max-width: 980px;
  margin: 0;
}

.sheet-document-validation-details__item {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.sheet-document-validation-details__item:last-child {
  border-bottom: 0;
}

.sheet-document-validation-details dt {
  margin: 0;
  padding-right: 18px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.sheet-document-validation-details dt .badge {
  margin-left: 6px;
}

.sheet-document-validation-details dd {
  min-width: 0;
  margin: 0;
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.sheet-document-validation-details__message {
  margin-top: 4px;
  color: var(--text-muted);
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
