/* ProperTech — custom stylesheet */

/* Prose content (KB articles) */
.prose h1, .prose h2, .prose h3, .prose h4 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.prose table th,
.prose table td {
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
}
.prose table thead {
  background-color: #f8f9fa;
}
.prose code {
  background: #f1f3f5;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-size: 0.9em;
}
.prose pre code {
  background: none;
  padding: 0;
}
.prose pre {
  background: #f1f3f5;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
}


/* Priority badges */
.badge.bg-urgent {
  background-color: #dc3545 !important;
}

/* Card hover effect */
a.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-1px);
  transition: all 0.15s ease;
}
