/* Small app-specific overrides layered on top of the SmartAdmin bundle. */

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}
.timeline li:last-child {
  border-bottom: none;
}

.filter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: end;
}
.filter-form .form-group {
  margin-bottom: 0;
  min-width: 160px;
}

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

/* Kanban board (/board) */
.board-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  align-items: flex-start;
}
.board-column {
  flex: 0 0 260px;
  background: #f4f5f9;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 260px);
}
.board-column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-weight: 600;
  border-top: 3px solid #886ab5;
  border-radius: 6px 6px 0 0;
  background: #fff;
}
.board-column-body {
  overflow-y: auto;
  padding: 8px;
  flex: 1;
}
.board-step-group {
  margin-bottom: 10px;
}
.board-step-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #8f9cb3;
  margin: 4px 4px 4px;
}
.board-card {
  background: #fff;
  border: 1px solid #e4e6ef;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 6px;
}
.board-card-stale {
  border-color: #fd7e14;
  background: #fff8f0;
}
.board-card-name {
  display: block;
  font-weight: 600;
}
.board-move-form select {
  margin-top: 6px;
}
