/**
 * SAF Mail - Deals + pipelines kanban styles.
 *
 * Path C UI. Native HTML5 drag-drop indicators (no library).
 */

.saf-mail-deals__toolbar {
  display: flex;
  gap: 12px;
  align-items: end;
  margin: 12px 0;
  flex-wrap: wrap;
}
.saf-mail-deals__toolbar label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #50575e;
}
.saf-mail-deals__toolbar select {
  min-width: 200px;
}

.saf-mail-deals__kanban {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 8px;
  min-height: 60vh;
}

.saf-mail-kanban__col {
  flex: 0 0 280px;
  background: #f6f7f7;
  border: 1px solid #e2e4e7;
  border-radius: 6px;
  padding: 8px;
  min-height: 200px;
  transition:
    background 80ms ease,
    border-color 80ms ease;
}
.saf-mail-kanban__col.is-drop-target {
  background: #e7f0fa;
  border-color: #2271b1;
}

.saf-mail-kanban__col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 8px;
  border-bottom: 1px solid #d0d4d9;
  margin-bottom: 6px;
}

.saf-mail-kanban__col-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
}

.saf-mail-kanban__card {
  background: #fff;
  border: 1px solid #d0d4d9;
  border-radius: 4px;
  padding: 8px 10px;
  cursor: grab;
  user-select: none;
}
.saf-mail-kanban__card.is-dragging {
  opacity: 0.4;
}

.saf-mail-kanban__card-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.saf-mail-kanban__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
}
.saf-mail-kanban__card-value {
  /* tuned for white card on grey column - rgba on dark base passes 4.5:1 */
  color: rgba(29, 35, 39, 0.82);
  font-variant-numeric: tabular-nums;
}
.saf-mail-kanban__card-sub {
  margin-top: 4px;
  font-size: 11px;
  color: #6c7378;
}

.saf-mail-deals__dialog {
  border: 1px solid #2271b1;
  border-radius: 4px;
  padding: 16px;
  min-width: 400px;
  max-width: 520px;
}
.saf-mail-deals__dialog .saf-mail-form__label-full {
  display: block;
  margin-bottom: 8px;
}
.saf-mail-deals__dialog .saf-mail-form__label-full > span {
  display: block;
  font-size: 12px;
  color: #50575e;
  margin-bottom: 2px;
}
.saf-mail-deals__dialog input[type="text"],
.saf-mail-deals__dialog input[type="number"],
.saf-mail-deals__dialog select,
.saf-mail-deals__dialog textarea {
  width: 100%;
  font-size: 14px;
}

.saf-mail-deals__stage-editor {
  border: 1px solid #d0d4d9;
  border-radius: 4px;
  padding: 8px;
  margin: 8px 0;
}
.saf-mail-deals__stage-row {
  display: grid;
  grid-template-columns: 1fr 1fr 30px;
  gap: 6px;
  margin-bottom: 6px;
  align-items: center;
}

.saf-mail-form__msg.is-error {
  color: #b32d2e;
}
.saf-mail-form__msg.is-success {
  color: #007017;
}
