/* ───── WORKFLOW STEPS ───── */
    .workflow {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 22px;
      overflow-x: auto;
      padding-bottom: 4px;
    }

    .wf-step {
      flex-shrink: 0;
      text-align: center;
      padding: 8px 16px;
      position: relative;
    }

    .wf-step .wf-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      margin: 0 auto 5px;
    }

    .wf-step .wf-label {
      font-size: 10px;
      color: var(--muted);
      white-space: nowrap;
    }

    .wf-arrow {
      color: var(--muted2);
      font-size: 18px;
      flex-shrink: 0;
    }

    .wf-active .wf-num {
      background: rgba(59, 130, 246, .2);
      color: var(--accent2);
      border: 1px solid rgba(59, 130, 246, .3);
    }

    .wf-done .wf-num {
      background: rgba(16, 185, 129, .15);
      color: #34d399;
      border: 1px solid rgba(16, 185, 129, .3);
    }

    .wf-inactive .wf-num {
      background: rgba(255, 255, 255, .04);
      color: var(--muted);
      border: 1px solid var(--border);
    }

/* ───── CALENDAR ───── */
    .calendar-wrap {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      user-select: none;
      max-width: 320px;
      margin: 0 auto;
    }

    .calendar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .calendar-title {
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
    }

    .calendar-btn {
      background: var(--surface2);
      border: 1px solid var(--border);
      color: var(--text);
      width: 28px;
      height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.1s;
    }

    .calendar-btn:hover {
      background: var(--border);
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .calendar-day-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
      text-align: center;
      padding-bottom: 8px;
      text-transform: uppercase;
    }

    .calendar-date {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.1s;
      border: 1px solid transparent;
      color: var(--text);
    }

    .calendar-date:hover:not(.disabled) {
      background: var(--surface2);
      border-color: var(--border2);
    }

    .calendar-date.selected {
      background: var(--orange);
      color: white !important;
      font-weight: 700;
    }

    .calendar-date.today {
      color: var(--orange);
      font-weight: 700;
      border-color: rgba(245, 158, 11, 0.3);
    }

    .calendar-date.disabled {
      color: var(--muted2);
      cursor: default;
      opacity: 0.3;
    }

    .calendar-date.other-month {
      color: var(--muted2);
      opacity: 0.5;
    }
