/* === Knowledge page buttons === */
.page-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 110px;
  min-height: 86px;
  background: #ffffff;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}
.page-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  border-color: #d1d5db;
}
.page-btn:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.page-btn .page-btn-icon {
  width: 24px;
  height: 24px;
  color: currentColor;
  stroke-width: 1.8;
}
.page-btn .page-btn-label {
  color: inherit;
  font-size: 14px;
}
.page-btn.active {
  border-color: #111111;
  color: #111111;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.15);
}
#saveContext {
  background-color: #000000;
  color: #ffffff;
}
#saveContext:hover {
  background-color: #111111;
}
