.content {
  min-height: 0;
}

.table-skeleton-line {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  background-size: 240% 100%;
  animation: app-skeleton 1.1s linear infinite;
}

@keyframes app-skeleton {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -40% 0;
  }
}

.toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-item {
  min-width: 220px;
  max-width: 420px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--app-border);
  background: rgba(6, 14, 28, 0.96);
  color: var(--app-text);
  font-size: 0.84rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-item.is-success {
  border-color: rgba(22, 163, 74, 0.55);
}

.toast-item.is-error {
  border-color: rgba(239, 68, 68, 0.55);
}

.toast-item.is-warning {
  border-color: rgba(245, 158, 11, 0.55);
}

.list-pagination {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.list-pagination-left,
.list-pagination-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-pagination-left label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--app-muted);
}

.list-pagination-left select {
  width: auto;
  min-width: 88px;
}

#hist-page-info,
#tec-page-ui-info {
  min-width: 92px;
  text-align: center;
  color: var(--app-muted);
  font-size: 0.84rem;
}
