body { background:#f5f7fb; }
.card { border:0; border-radius:16px; box-shadow:0 6px 18px rgba(0,0,0,.06); }
.stat-card { min-height:110px; }
.pipeline-col { min-height:500px; background:#eef1f7; border-radius:16px; padding:12px; }
.lead-card { border-left:5px solid #0d6efd; margin-bottom:10px; }
.badge-status { font-size:.78rem; }
.table-responsive { background:#fff; border-radius:16px; padding:12px; box-shadow:0 6px 18px rgba(0,0,0,.06); }
.login-wrap { max-width:430px; margin:7vh auto; }


.pipeline-board {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 18px;
  height: calc(100vh - 185px);
  align-items: flex-start;
}
.pipeline-stage {
  flex: 0 0 330px;
  max-width: 330px;
  background: #eef1f7;
  border-radius: 16px;
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pipeline-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  position: sticky;
  top: 0;
  background: #eef1f7;
  z-index: 2;
  padding-bottom: 6px;
}
.pipeline-dropzone {
  min-height: 160px;
  overflow-y: auto;
  padding-right: 3px;
}
.pipeline-card { cursor: default; }
.drag-handle {
  cursor: grab;
  color: #6c757d;
  font-size: 20px;
  line-height: 1;
  user-select: none;
}
.pipeline-card-ghost { opacity: .45; }
.pipeline-card-chosen { transform: rotate(1deg); }
