body {
  background-color: #f8f9fa;
}

.navbar-brand {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.card {
  border-radius: 8px;
}

.table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#raderTabell input, #raderTabell select {
  font-size: 0.85rem;
}

.list-group-item-action:hover {
  background-color: #fff3cd;
}

dt {
  font-weight: 500;
  color: #6c757d;
  font-size: 0.875rem;
}

/* ── Kanban (Projekt) ─────────────────────────────────────── */
.kanban-board {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  align-items: flex-start;
}

.kanban-col {
  flex: 0 0 280px;
  background: #eef0f2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 160px);
}

.kanban-col-header {
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
}

.kanban-col-body {
  padding: 0.5rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 40px;
}

.kanban-card {
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  color: inherit;
  text-decoration: none;
  cursor: grab;
}

.kanban-card:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  color: inherit;
}

.kanban-card.dragging {
  opacity: 0.4;
}
