.top-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.soft-info {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  color: #1e3a8a;
  border-radius: .85rem;
  padding: .9rem 1rem;
}

.alert-inline {
  border-radius: .75rem;
  margin-bottom: 1rem;
}

.section-card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.section-card .card-header {
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
  padding: 1rem 1.25rem;
}

.section-card .card-body {
  padding: 1.25rem;
}

.section-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
}

.section-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  margin-right: .65rem;
  font-size: .95rem;
}

.context-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 600;
  font-size: .9rem;
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: .45rem;
}

.section-card .form-control {
  min-height: 44px;
  border-radius: .75rem;
  border: 1px solid #dbe3ee;
  box-shadow: none;
}

.section-card .form-control:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 .12rem rgba(37, 99, 235, 0.12);
}

.field-help {
  font-size: .85rem;
  color: #6b7280;
  margin-top: .45rem;
  line-height: 1.45;
}

.field-errors {
  font-size: .85rem;
  color: #dc2626;
  margin-top: .35rem;
}

.soft-note {
  margin-top: .35rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 1rem;
}

.soft-note-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: .35rem;
}

.soft-note-text {
  color: #475569;
  line-height: 1.55;
}

.sticky-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  background: rgba(244, 246, 249, 0.92);
  backdrop-filter: blur(4px);
  padding-top: .75rem;
}

.btn-rounded {
  border-radius: .7rem;
  font-weight: 600;
  padding: .55rem 1rem;
}

.status-card {
  min-height: 44px;
  border-radius: .85rem;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  padding: .9rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 0;
}

.custom-check .form-check-input {
  position: static;
  margin: 0;
}

.custom-check .form-check-label {
  margin: 0;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
}

.status-help {
  margin-top: .55rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .section-card .card-body {
    padding: 1rem;
  }

  .top-action-bar {
    margin-bottom: .85rem;
  }
}