/* =====================
   TICKETS — GLOBAL
   ===================== */
.tk-page {
  padding: 24px;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 52px);
}

/* =====================
   TOPBAR
   ===================== */
.tk-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.tk-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tk-page-title {
  font-size: 16px;
  font-weight: 600;
  color: #202223;
  font-family: var(--font-heading, 'Figtree', sans-serif);
}
.tk-badge {
  font-size: 11px;
  color: #6d7175;
  background: #f7f7f7;
  border: 1px solid #e1e3e5;
  border-radius: 20px;
  padding: 2px 8px;
}
.tk-topbar-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tk-search {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #202223;
  width: 200px;
  outline: none;
  font-family: inherit;
  transition: border-color .15s;
}
.tk-search:focus { border-color: #005bd3; }
.tk-gear-btn {
  background: #fff;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  color: #303030;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: all .15s;
}
.tk-gear-btn:hover { border-color: #202223; color: #202223; }
.tk-sync-btn {
  background: #202223;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: background .15s;
}
.tk-sync-btn:hover { background: #303030; }
.tk-sync-btn.loading { opacity: .6; pointer-events: none; }

/* =====================
   STATUS TABS
   ===================== */
.tk-status-tabs {
  display: flex;
  gap: 0;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  width: fit-content;
  background: #fff;
}
.tk-tab {
  padding: 7px 16px;
  font-size: 13px;
  cursor: pointer;
  color: #6d7175;
  border-right: 1px solid #e1e3e5;
  transition: all .12s;
  white-space: nowrap;
  font-family: inherit;
}
.tk-tab:last-child { border-right: none; }
.tk-tab:hover { color: #202223; background: #f7f7f7; }
.tk-tab.active { background: #202223; color: #fff; }

/* =====================
   LAYOUT
   ===================== */
.tk-layout {
  display: flex;
  gap: 0;
  border: 1px solid #e1e3e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  flex: 1;
  min-height: 500px;
}

/* =====================
   TICKET LIST
   ===================== */
.tk-list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e1e3e5;
  transition: flex .2s;
}
.tk-list-header {
  padding: 10px 14px;
  border-bottom: 1px solid #e1e3e5;
  background: #f7f7f7;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: #6d7175;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tk-scroll { overflow-y: auto; flex: 1; }
.tk-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.tk-head th {
  font-size: 10px;
  font-weight: 600;
  color: #6d7175;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid #e1e3e5;
  background: #f7f7f7;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
.tk-row td {
  font-size: 12px;
  color: #202223;
  padding: 9px 12px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background .1s;
}
.tk-row:last-child td { border-bottom: none; }
.tk-row:hover td { background: #fafafa; }
.tk-row.unread td { background: #eff6ff; }
.tk-row.unread:hover td { background: #dbeafe; }
.tk-row.selected td { background: #e8f0fe; }
.tk-row.selected:hover td { background: #dbeafe; }

/* Unread indicator */
.tk-row.unread .tk-id::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #005bd3;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -1px;
}

.tk-id { color: #6d7175; font-size: 11px; font-family: monospace; }
.tk-date { color: #6d7175; font-size: 11px; }
.tk-date-updated { color: #005bd3; font-size: 11px; font-weight: 500; }

.tk-prio {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}
.tk-prio.high { background: #fff0ef; color: #d72c0d; }
.tk-prio.medium { background: #fff4e4; color: #c05717; }
.tk-prio.low { background: #f7f7f7; color: #6d7175; border: 1px solid #e1e3e5; }
.tk-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.tk-dot.high { background: #d72c0d; }
.tk-dot.medium { background: #c05717; }

.tk-cat {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 10px;
  background: #f7f7f7;
  color: #6d7175;
  border: 1px solid #e1e3e5;
}

/* Zekerheid van de AI-classificatie */
.tk-conf {
  display: inline-block;
  min-width: 34px;
  text-align: center;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.tk-conf.hoog   { background: #f0fff8; color: #008060; border: 1px solid #a8d9c4; }
.tk-conf.midden { background: #fff4e4; color: #c05717; border: 1px solid #f0d4b0; }
.tk-conf.laag   { background: #fff0ef; color: #d72c0d; border: 1px solid #f0c0bc; }
.tk-conf.leeg   { background: #f7f7f7; color: #c9cccf; border: 1px solid #e1e3e5; }

/* Herhaalcontact — klant heeft meerdere open tickets */
.tk-repeat {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 6px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  background: #fff4e4;
  color: #c05717;
  border: 1px solid #f0d4b0;
  vertical-align: middle;
}

/* Beschrijving mag afkappen, de rest niet */
.col-desc { max-width: 0; }

/* =====================
   EMPTY STATE
   ===================== */
.tk-empty {
  text-align: center;
  padding: 60px 20px;
  color: #6d7175;
  font-size: 13px;
}
.tk-empty-icon { font-size: 32px; margin-bottom: 10px; }
.tk-empty-title { font-weight: 600; color: #202223; margin-bottom: 6px; font-size: 14px; }

/* =====================
   DETAIL PANEL
   ===================== */
.tk-detail {
  width: 50%;
  min-width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: width .2s, min-width .2s;
  overflow: hidden;
}
.tk-detail.hidden { width: 0; min-width: 0; }

.tk-detail-header {
  padding: 12px 14px;
  border-bottom: 1px solid #e1e3e5;
  background: #f7f7f7;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.tk-detail-header > div:first-child { margin-right: auto; }
.tk-detail-id { font-size: 13px; font-weight: 600; color: #202223; }
.tk-detail-sub { font-size: 11px; color: #6d7175; margin-top: 2px; }
.tk-close-btn {
  background: none;
  border: 1px solid #e1e3e5;
  border-radius: 6px;
  cursor: pointer;
  color: #6d7175;
  font-size: 16px;
  padding: 3px 7px;
  line-height: 1;
  transition: all .12s;
}
.tk-close-btn:hover { color: #202223; border-color: #202223; }

.tk-detail-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tk-section-label {
  font-size: 10px;
  font-weight: 600;
  color: #6d7175;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}

.tk-info-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid #e1e3e5;
}
.tk-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 3px 0;
  gap: 8px;
}
.tk-info-key { color: #6d7175; flex-shrink: 0; }
.tk-info-val { color: #202223; font-weight: 500; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tk-info-val.accent { color: #005bd3; }

/* Products */
.tk-products { display: flex; flex-direction: column; gap: 4px; }
.tk-product-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 7px 10px;
  border: 1px solid #e1e3e5;
}
.tk-product-img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #e1e3e5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6d7175;
}
.tk-product-name { flex: 1; font-size: 11px; color: #202223; font-weight: 500; }
.tk-product-meta { font-size: 10px; color: #6d7175; white-space: nowrap; }

/* Tracking */
.tk-tracking { display: flex; flex-direction: column; }
.tk-track-item { display: flex; gap: 10px; position: relative; }
.tk-track-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 18px;
  width: 1px;
  bottom: 0;
  background: #e1e3e5;
}
.tk-track-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #e1e3e5;
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.tk-track-dot.active { border-color: #008060; background: #008060; }
.tk-track-dot.done { border-color: #c9cccf; background: #c9cccf; }
.tk-track-content { flex: 1; padding-bottom: 12px; }
.tk-track-status { font-size: 11px; font-weight: 500; color: #202223; }
.tk-track-status.active { color: #008060; }
.tk-track-date { font-size: 10px; color: #6d7175; margin-top: 1px; }
.tk-track-loc { font-size: 10px; color: #6d7175; }

/* Thread */
.tk-thread-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.tk-translate-btn {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #6d7175;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  transition: all .12s;
}
.tk-translate-btn:hover { color: #005bd3; border-color: #005bd3; }
.tk-translate-btn.active { background: #e8f0fe; color: #005bd3; border-color: #005bd3; }

.tk-msg {
  background: #fff;
  border-radius: 0;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid #e1e3e5;
  margin-bottom: 0;
}
.tk-msg:last-child { border-bottom: none; }
.tk-msg.outbound { background: #f9fffe; }
.tk-msg-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tk-msg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #0078d4; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.tk-msg-avatar.outbound { background: #008060; }
.tk-msg-header { display: flex; justify-content: space-between; align-items: flex-start; flex: 1; gap: 8px; }
.tk-msg-from { font-size: 13px; font-weight: 600; color: #202223; }
.tk-msg-from-email { font-size: 11px; color: #6d7175; font-weight: 400; margin-left: 4px; }
.tk-msg-date { font-size: 11px; color: #6d7175; flex-shrink: 0; }
.tk-msg-body { font-size: 13px; color: #303030; line-height: 1.65; white-space: pre-wrap; padding-left: 40px; }
.tk-translation {
  font-size: 11px;
  color: #6d7175;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e1e3e5;
  font-style: italic;
  line-height: 1.6;
}

/* AI sectie scheiding */
.tk-ai-divider {
  border-top: 2px solid #e1e3e5;
  margin: 8px -14px 12px -14px;
  padding-top: 12px;
  padding-left: 14px;
  padding-right: 14px;
}

/* AI voorstel */
.tk-ai-card {
  background: #f0f6ff;
  border: 1px solid #c0d4f0;
  border-radius: 8px;
  padding: 12px;
}
.tk-ai-label {
  font-size: 10px;
  font-weight: 600;
  color: #005bd3;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tk-ai-generating {
  font-size: 12px;
  color: #6d7175;
  font-style: italic;
}
.tk-ai-body {
  font-size: 12px;
  color: #202223;
  line-height: 1.7;
  white-space: pre-wrap;
}
.tk-ai-edit {
  width: 100%;
  font-size: 12px;
  color: #202223;
  line-height: 1.7;
  border: 1px solid #c0d4f0;
  border-radius: 6px;
  padding: 8px;
  resize: vertical;
  min-height: 100px;
  outline: none;
  font-family: inherit;
  background: #fff;
}
.tk-ai-edit:focus { border-color: #005bd3; }

/* Status select */
.tk-status-select {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #202223;
  outline: none;
  width: 100%;
  font-family: inherit;
  cursor: pointer;
}
.tk-status-select:focus { border-color: #005bd3; }

/* Reply actions */
.tk-reply-actions {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid #e1e3e5;
  flex-shrink: 0;
  background: #f7f7f7;
}
.tk-btn-send {
  flex: 1;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  background: #008060;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s;
}
.tk-btn-send:hover { background: #006e52; }
.tk-btn-send:disabled { opacity: .6; pointer-events: none; }
.tk-btn-edit {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #303030;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .15s;
}
.tk-btn-edit:hover { border-color: #202223; color: #202223; }
.tk-btn-edit.active { background: #e8f0fe; border-color: #005bd3; color: #005bd3; }

/* =====================
   SETTINGS MODAL
   ===================== */
.tk-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
}
.tk-settings-modal.open { display: flex; }
.tk-settings-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 520px;
  max-width: 95vw;
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tk-settings-title { font-size: 16px; font-weight: 600; color: #202223; }
.tk-settings-section { border-top: 1px solid #f1f1f1; padding-top: 14px; }
.tk-settings-section-title { font-size: 11px; font-weight: 700; color: #6d7175; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.tk-settings-row { margin-bottom: 10px; }
.tk-settings-label { font-size: 12px; font-weight: 500; color: #303030; margin-bottom: 4px; display: block; }
.tk-settings-input {
  width: 100%;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid #c9cccf;
  color: #202223;
  outline: none;
  font-family: inherit;
  transition: border-color .15s;
}
.tk-settings-input:focus { border-color: #005bd3; }
.tk-settings-textarea {
  width: 100%;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid #c9cccf;
  color: #202223;
  outline: none;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  transition: border-color .15s;
}
.tk-settings-textarea:focus { border-color: #005bd3; }
.tk-settings-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 4px; }
.tk-btn-save {
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  border: none;
  background: #008060;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}
.tk-btn-save:hover { background: #006e52; }
.tk-btn-cancel {
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #303030;
  cursor: pointer;
  font-family: inherit;
}

/* Handtekening preview */
.tk-signature-preview {
  background: #f7f7f7;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: #303030;
  line-height: 1.6;
  margin-top: 8px;
}
.tk-signature-logo { max-height: 40px; margin-bottom: 4px; display: block; }

/* =====================
   ONBOARDING
   ===================== */
.tk-onboarding {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tk-ob-progress {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 0;
}
.tk-ob-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e1e3e5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #6d7175;
  flex-shrink: 0;
  transition: all .2s;
}
.tk-ob-step-dot.active { border-color: #202223; background: #202223; color: #fff; }
.tk-ob-step-dot.done { border-color: #008060; background: #008060; color: #fff; }
.tk-ob-step-line { flex: 1; height: 2px; background: #e1e3e5; transition: background .2s; }
.tk-ob-step-line.done { background: #008060; }

.tk-ob-card {
  background: #fff;
  border: 1px solid #e1e3e5;
  border-radius: 12px;
  padding: 28px;
}
.tk-ob-title { font-size: 20px; font-weight: 700; color: #202223; margin-bottom: 6px; font-family: var(--font-heading, 'Figtree', sans-serif); }
.tk-ob-sub { font-size: 13px; color: #6d7175; margin-bottom: 24px; line-height: 1.6; }
.tk-ob-section { margin-bottom: 18px; }
.tk-ob-label { font-size: 12px; font-weight: 600; color: #303030; margin-bottom: 6px; display: block; }
.tk-ob-desc { font-size: 11px; color: #6d7175; margin-bottom: 6px; }
.tk-ob-input {
  width: 100%;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #c9cccf;
  color: #202223;
  outline: none;
  font-family: inherit;
  transition: border-color .15s;
  background: #fff;
}
.tk-ob-input:focus { border-color: #005bd3; box-shadow: 0 0 0 3px rgba(0,91,211,.1); }
.tk-ob-textarea {
  width: 100%;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #c9cccf;
  color: #202223;
  outline: none;
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
  transition: border-color .15s;
  background: #fff;
}
.tk-ob-textarea:focus { border-color: #005bd3; box-shadow: 0 0 0 3px rgba(0,91,211,.1); }

.tk-ob-options { display: flex; flex-direction: column; gap: 8px; }
.tk-ob-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  cursor: pointer;
  transition: all .12s;
}
.tk-ob-option:hover { border-color: #202223; }
.tk-ob-option.selected { border-color: #008060; background: #f0fff8; }
.tk-ob-option input[type=radio] { margin-top: 2px; accent-color: #008060; }
.tk-ob-option-label { font-size: 13px; font-weight: 500; color: #202223; }
.tk-ob-option-desc { font-size: 11px; color: #6d7175; margin-top: 2px; }

.tk-ob-connect-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #202223;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
  margin-bottom: 10px;
}
.tk-ob-connect-btn:hover { background: #303030; }
.tk-ob-connect-success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f0fff8;
  border: 1px solid #a8d9c4;
  border-radius: 8px;
  font-size: 13px;
  color: #008060;
  font-weight: 500;
}

.tk-ob-nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 24px;
}

.tk-msg-html { font-size: 13px; color: #303030; line-height: 1.65; }
.tk-msg-html img { max-width: 100%; border-radius: 4px; margin: 4px 0; }
.tk-msg-html img[src^="cid:"] { display: none; }
.tk-msg-html a { color: #005bd3; }
.tk-msg-html blockquote { border-left: 3px solid #e1e3e5; margin: 8px 0; padding-left: 10px; color: #6d7175; font-size: 12px; }

.tk-ob-back {
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #303030;
  cursor: pointer;
  font-family: inherit;
}
.tk-ob-next {
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  background: #202223;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: background .15s;
}
.tk-ob-next:hover { background: #303030; }
.tk-ob-next:disabled { opacity: .5; pointer-events: none; }

/* =====================
   RESPONSIVE
   ===================== */
@media(max-width:1100px) {
  .col-created, .col-updated { display: none; }
}
@media(max-width:900px) {
  .tk-detail { width: 360px; min-width: 300px; }
  .col-conf { display: none; }
}
@media(max-width:700px) {
  .tk-page { padding: 12px; }
}

/* =====================
   HANDTEKENING EDITOR */
.tk-sig-hint {
  font-size: 11px;
  color: #6d7175;
  margin-bottom: 8px;
  line-height: 1.5;
}
.tk-sig-toolbar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 6px;
  border: 1px solid #c9cccf;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: #f7f7f7;
}
.tk-sig-tool {
  background: none;
  border: 1px solid transparent;
  border-radius: 5px;
  min-width: 26px;
  height: 26px;
  cursor: pointer;
  color: #303030;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: all .12s;
  padding: 0 5px;
}
.tk-sig-tool:hover { background: #fff; border-color: #c9cccf; }
.tk-sig-tool-sep {
  width: 1px;
  height: 18px;
  background: #e1e3e5;
  margin: 0 4px;
}
.tk-sig-editor {
  border: 1px solid #c9cccf;
  border-radius: 0 0 8px 8px;
  padding: 12px 14px;
  min-height: 130px;
  max-height: 300px;
  overflow-y: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #202223;
  background: #fff;
  outline: none;
}
.tk-sig-editor:focus { border-color: #005bd3; }
.tk-sig-editor:empty::before {
  content: attr(data-placeholder);
  color: #b5b5b5;
  white-space: pre-line;
}
.tk-sig-editor a { color: #005bd3; }
.tk-sig-editor img {
  max-width: 100%;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 2px;
  vertical-align: bottom;
}
.tk-sig-editor img:hover { border-color: #c0d4f0; }
.tk-sig-editor img.tk-sig-selected { border-color: #005bd3; }
/* Formaatbalk voor de geselecteerde afbeelding */
.tk-sig-imgbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 7px 10px;
  background: #f0f6ff;
  border: 1px solid #c0d4f0;
  border-radius: 8px;
}
.tk-sig-imgbar-label {
  font-size: 11px;
  font-weight: 600;
  color: #005bd3;
  white-space: nowrap;
}
.tk-sig-imgbar input[type=range] {
  flex: 1;
  accent-color: #005bd3;
  cursor: pointer;
  min-width: 80px;
}
.tk-sig-imgbar-val {
  font-size: 11px;
  color: #6d7175;
  min-width: 46px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.tk-ai-signature {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #c0d4f0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #202223;
}
.tk-ai-signature img { max-width: 100%; }
.tk-ai-signature a { color: #005bd3; }


/* =====================
   AI ONBOARDING — STAP 1, 2, 3
   ===================== */
.tk-ai-ob {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid #e1e3e5;
  border-radius: 12px;
  overflow: hidden;
  min-height: 620px;
}

/* ---- Zijbalk met voortgang ---- */
.tk-ob-rail {
  width: 250px;
  flex-shrink: 0;
  border-right: 1px solid #e1e3e5;
  background: #fafbfb;
  padding: 20px 0;
  overflow-y: auto;
  max-height: 78vh;
}
.tk-ob-rail-head { padding: 0 18px 16px; }
.tk-ob-rail-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: #8c9196; margin-bottom: 4px;
}
.tk-ob-rail-title { font-size: 15px; font-weight: 650; color: #202223; }

.tk-ob-rail-bar {
  height: 3px; background: #e8eaec; border-radius: 99px;
  margin: 0 18px 6px; overflow: hidden;
}
.tk-ob-rail-fill {
  height: 100%; background: #005bd3; border-radius: 99px;
  width: 0; transition: width .35s cubic-bezier(.4,0,.2,1);
}
.tk-ob-rail-pct {
  font-size: 11px; color: #8c9196; padding: 0 18px 14px;
}

.tk-ob-rail-group {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #8c9196;
  padding: 14px 18px 5px;
}
.tk-ob-rail-item {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 18px; cursor: pointer;
  border-left: 2.5px solid transparent;
  transition: background .12s;
}
.tk-ob-rail-item:hover { background: #f1f2f3; }
.tk-ob-rail-item.active {
  border-left-color: #005bd3; background: #eff5ff;
}
.tk-ob-rail-item.active .tk-ob-rail-label { color: #005bd3; font-weight: 600; }
.tk-ob-rail-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid #d6d9dc; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #8c9196;
}
.tk-ob-rail-item.active .tk-ob-rail-dot { border-color: #005bd3; }
.tk-ob-rail-item.done .tk-ob-rail-dot {
  background: #008060; border-color: #008060; color: #fff;
}
.tk-ob-rail-label { font-size: 12.5px; color: #5c6166; }
.tk-ob-rail-item.done .tk-ob-rail-label { color: #202223; }

/* ---- Hoofdgedeelte ---- */
.tk-ob-main {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
}
.tk-ob-canvas {
  flex: 1; padding: 30px 34px 24px;
  overflow-y: auto; max-height: 70vh;
}
.tk-ob-crumb {
  font-size: 10.5px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: #005bd3; margin-bottom: 9px;
}
.tk-ob-h1 {
  font-size: 22px; font-weight: 680; letter-spacing: -.02em;
  color: #202223; line-height: 1.25; margin-bottom: 7px;
}
.tk-ob-lede {
  font-size: 13.5px; color: #5c6166; line-height: 1.6;
  max-width: 62ch; margin-bottom: 26px;
}

/* ---- Eén vraag ---- */
.tk-obq { margin-bottom: 26px; }
.tk-obq-head { display: flex; gap: 10px; margin-bottom: 10px; }
.tk-obq-num {
  font-size: 11px; font-weight: 700; color: #b5bab f;
  font-variant-numeric: tabular-nums; padding-top: 3px;
  min-width: 18px; color: #a8aeb5;
}
.tk-obq-label {
  font-size: 14px; font-weight: 600; color: #202223;
  letter-spacing: -.005em; line-height: 1.45;
}
.tk-obq-help {
  font-size: 12.5px; color: #5c6166; margin-top: 3px; line-height: 1.5;
}
.tk-obq-body { padding-left: 28px; }

/* ---- Keuze-opties ---- */
.tk-obq-opts { display: flex; flex-direction: column; gap: 6px; }
.tk-obq-opt {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 13px;
  border: 1px solid #e1e3e5; border-radius: 9px;
  background: #fff; cursor: pointer;
  transition: border-color .12s, background .12s, box-shadow .12s;
}
.tk-obq-opt:hover { border-color: #c4c9cf; }
.tk-obq-opt.on {
  border-color: #005bd3; background: #f4f8ff;
  box-shadow: 0 0 0 1px #005bd3;
}
.tk-obq-tick {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid #c4c9cf; background: #fff; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: all .12s;
}
.tk-obq-opt.on .tk-obq-tick { border-color: #005bd3; border-width: 5px; }
.tk-obq-opt.multi .tk-obq-tick { border-radius: 4px; }
.tk-obq-opt.multi.on .tk-obq-tick {
  border-width: 1.5px; background: #005bd3; border-color: #005bd3;
}
.tk-obq-opt.multi.on .tk-obq-tick::after {
  content: ''; width: 7px; height: 4px;
  border-left: 1.7px solid #fff; border-bottom: 1.7px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.tk-obq-opt-text { flex: 1; min-width: 0; }
.tk-obq-opt-main { font-size: 13.5px; font-weight: 500; color: #202223; }
.tk-obq-opt-sub { font-size: 12px; color: #5c6166; margin-top: 2px; line-height: 1.45; }
.tk-obq-pill {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .03em; padding: 1px 6px; border-radius: 5px;
  background: #f0fff8; color: #008060; margin-left: 6px;
  vertical-align: 1px; border: 1px solid #a8d9c4;
}

/* ---- Invoervelden ---- */
.tk-obq-field {
  width: 100%; font-family: inherit; font-size: 13.5px; color: #202223;
  padding: 9px 12px; border: 1px solid #c4c9cf; border-radius: 8px;
  background: #fff; outline: none; transition: all .12s;
}
.tk-obq-field:focus {
  border-color: #005bd3; box-shadow: 0 0 0 3px rgba(0,91,211,.1);
}
.tk-obq-field::placeholder { color: #a8aeb5; }
.tk-obq-field.sm { max-width: 110px; }
textarea.tk-obq-field {
  resize: vertical; min-height: 78px; line-height: 1.6;
}
.tk-obq-suffix { display: flex; align-items: center; gap: 8px; }
.tk-obq-suffix-txt { font-size: 13px; color: #5c6166; }

/* ---- Toelichtingsblokken ---- */
.tk-obq-note {
  display: flex; gap: 9px; padding: 11px 13px; border-radius: 9px;
  font-size: 12.5px; line-height: 1.55; margin-top: 10px;
}
.tk-obq-note i { flex-shrink: 0; font-style: normal; }
.tk-obq-note.data { background: #f0f6ff; color: #1a3f8f; }
.tk-obq-note.warn { background: #fff8ed; color: #7a4600; }
.tk-obq-note em { font-style: italic; }

/* ---- Voettekst met knoppen ---- */
.tk-ob-foot {
  border-top: 1px solid #e1e3e5;
  padding: 13px 34px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fafbfb; flex-shrink: 0;
}
.tk-ob-foot-note { font-size: 12px; color: #8c9196; }
.tk-ob-foot-right { display: flex; align-items: center; gap: 10px; }
.tk-ob-btn {
  font-family: inherit; font-size: 13px; font-weight: 550;
  padding: 8px 17px; border-radius: 8px; cursor: pointer;
  border: 1px solid transparent; transition: all .12s;
  display: inline-flex; align-items: center; gap: 6px;
}
.tk-ob-btn-ghost { background: transparent; color: #5c6166; }
.tk-ob-btn-ghost:hover { background: #eef0f1; color: #202223; }
.tk-ob-btn-next { background: #202223; color: #fff; }
.tk-ob-btn-next:hover { background: #000; }
.tk-ob-btn-next:disabled { opacity: .5; pointer-events: none; }

/* ---- Stap 2: stijlanalyse ---- */
.tk-ob-scan {
  border: 1px solid #e1e3e5; border-radius: 11px;
  background: #fff; overflow: hidden; margin-bottom: 24px;
}
.tk-ob-scan-top {
  padding: 15px 17px; border-bottom: 1px solid #f1f2f4;
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(to bottom, #fbfcfd, #fff);
}
.tk-ob-scan-badge {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: #f0fff8; color: #008060;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.tk-ob-scan-badge.busy { background: #f0f6ff; color: #005bd3; }
.tk-ob-scan-t { font-size: 13.5px; font-weight: 600; color: #202223; }
.tk-ob-scan-s { font-size: 12px; color: #5c6166; margin-top: 1px; }
.tk-ob-found { padding: 4px 17px 13px; }
.tk-ob-found-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid #f1f2f4;
}
.tk-ob-found-row:last-child { border-bottom: none; }
.tk-ob-found-k {
  font-size: 12px; color: #8c9196; width: 142px; flex-shrink: 0;
}
.tk-ob-found-v { font-size: 13px; flex: 1; color: #202223; }
.tk-ob-found-v code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; background: #f1f2f4; padding: 1px 5px; border-radius: 4px;
}

/* ---- Stap 3: beslisregels ---- */
.tk-ob-rules { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.tk-ob-rule {
  border: 1px solid #e1e3e5; border-radius: 10px;
  background: #fff; transition: box-shadow .12s;
}
.tk-ob-rule:hover { box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.tk-ob-rule-top {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
}
.tk-ob-rule-order {
  font-size: 10.5px; font-weight: 700; color: #a8aeb5;
  font-variant-numeric: tabular-nums; width: 14px; flex-shrink: 0;
}
.tk-ob-rule-body { flex: 1; min-width: 0; }
.tk-ob-chips { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.tk-ob-chip {
  font-size: 11.5px; padding: 3px 8px; border-radius: 6px;
  background: #f1f2f4; color: #5c6166; white-space: nowrap;
}
.tk-ob-chip b { color: #202223; font-weight: 600; }
.tk-ob-chip-and { font-size: 10.5px; color: #a8aeb5; padding: 0 1px; }
.tk-ob-rule-then {
  display: flex; align-items: center; gap: 6px; margin-top: 6px;
  font-size: 12.5px; flex-wrap: wrap;
}
.tk-ob-arrow { color: #a8aeb5; font-size: 11px; }
.tk-ob-action {
  font-weight: 600; padding: 3px 8px; border-radius: 6px; font-size: 12px;
}
.tk-ob-action.money { background: #f0fff8; color: #008060; }
.tk-ob-action.escal { background: #fff0ef; color: #d72c0d; }
.tk-ob-action.ask   { background: #fff8ed; color: #a35d00; }
.tk-ob-action.info  { background: #f0f6ff; color: #1a3f8f; }
.tk-ob-rule-x {
  background: none; border: none; cursor: pointer; color: #a8aeb5;
  font-size: 16px; line-height: 1; padding: 3px 5px; border-radius: 5px;
  flex-shrink: 0; transition: all .12s;
}
.tk-ob-rule-x:hover { background: #fff0ef; color: #d72c0d; }
.tk-ob-rules-hint {
  display: flex; gap: 9px; padding: 11px 13px; border-radius: 9px;
  background: #f1f2f4; font-size: 12.5px; color: #5c6166;
  line-height: 1.55; margin-bottom: 16px;
}

/* ---- Klaar-scherm ---- */
.tk-ob-done {
  text-align: center; padding: 50px 30px;
}
.tk-ob-done-icon { font-size: 42px; margin-bottom: 14px; }
.tk-ob-done-t {
  font-size: 21px; font-weight: 680; color: #202223;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.tk-ob-done-s {
  font-size: 13.5px; color: #5c6166; line-height: 1.65;
  max-width: 46ch; margin: 0 auto 26px;
}

/* ---- Smalle schermen ---- */
@media (max-width: 940px) {
  .tk-ob-rail { display: none; }
  .tk-ob-canvas { padding: 22px 18px; max-height: none; }
  .tk-ob-foot { padding: 12px 18px; }
  .tk-ob-h1 { font-size: 19px; }
  .tk-obq-body { padding-left: 0; }
  .tk-ob-found-k { width: 110px; }
}

/* =====================
   TICKETSTAPEL IN DE HEADER
   Alle open tickets van deze klant, nieuwste links.
   ===================== */
/* De stapel zweeft in de rechterbovenhoek van tk-layout en volgt
   de ronding van dat blok. */
.tk-layout { position: relative; }
.tk-hdr-stack {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 5px 7px 6px 9px;
  background: #f7f7f7;
  border-left: 1px solid #e1e3e5;
  border-bottom: 1px solid #e1e3e5;
  border-radius: 0 10px 0 10px;
}
.tk-hdr-pills { display: flex; align-items: center; }
.tk-hdr-pill {
  position: relative;
  background: #fff;
  border: 0.5px solid #e1e3e5;
  border-radius: 7px;
  padding: 3px 9px;
  font-size: 11.5px;
  color: #5c6166;
  cursor: pointer;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: transform .13s, box-shadow .13s;
}
.tk-hdr-pill + .tk-hdr-pill { margin-left: -10px; padding-left: 14px; }
.tk-hdr-pill:first-child {
  border-color: #c4c9cf;
  color: #202223;
  font-weight: 500;
}
.tk-hdr-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  z-index: 99 !important;
}
/* Het ticket waar je nu in zit */
.tk-hdr-pill.here {
  background: #f1f2f4;
  border-color: #e1e3e5;
  color: #a8aeb5;
  font-weight: 400;
  cursor: default;
}
/* De teller aan het eind */
.tk-hdr-pill.more {
  background: #fafbfb;
  color: #8c9196;
  font-size: 11px;
}
@media (max-width: 820px) {
  .tk-hdr-stack { display: none; }
}
/* Lange trackingtijdlijn scrollt binnen zijn eigen kader */
.tk-track-scroll {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
  mask-image: linear-gradient(to bottom, #000 calc(100% - 18px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 18px), transparent 100%);
}
.tk-track-scroll::-webkit-scrollbar { width: 6px; }
.tk-track-scroll::-webkit-scrollbar-thumb {
  background: #d6d9dc;
  border-radius: 3px;
}
.tk-track-scroll::-webkit-scrollbar-thumb:hover { background: #c4c9cf; }

/* Engelse vertaling onder elk klantbericht */
.tk-subject-en {
  font-size: 11px;
  color: #5c6166;
  background: #f7f7f7;
  border: 1px solid #e1e3e5;
  border-radius: 6px;
  padding: 3px 9px;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tk-translation {
  margin-top: 10px;
  margin-left: 40px;
  padding: 9px 12px;
  background: #fafbfb;
  border: 1px solid #e8eaec;
  border-left: 2px solid #c4c9cf;
  border-radius: 0 7px 7px 0;
}
.tk-trans-kop {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a8aeb5;
  margin-bottom: 4px;
}
.tk-trans-tekst {
  font-size: 12.5px;
  color: #5c6166;
  line-height: 1.6;
  white-space: pre-wrap;
}
.tk-trans-laden {
  font-size: 11px;
  color: #a8aeb5;
  font-style: italic;
}

/* Engelse versie van ons eigen antwoord */
.tk-ai-trans {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #c0d4f0;
}
.tk-ai-trans-kop {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8ca8d8;
  margin-bottom: 4px;
}
.tk-ai-trans-tekst {
  font-size: 12px;
  color: #5c6166;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Antwoord bijstellen met een opdracht */
.tk-ai-tweak {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #c0d4f0;
}
.tk-ai-tweak-input {
  flex: 1;
  font-size: 12px;
  padding: 7px 10px;
  border: 1px solid #c0d4f0;
  border-radius: 7px;
  background: #fff;
  color: #202223;
  outline: none;
  font-family: inherit;
  min-width: 0;
}
.tk-ai-tweak-input:focus { border-color: #005bd3; }
.tk-ai-tweak-input::placeholder { color: #a8aeb5; }
.tk-ai-tweak-btn {
  font-size: 12px;
  font-weight: 550;
  padding: 7px 13px;
  border: none;
  border-radius: 7px;
  background: #005bd3;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .15s;
}
.tk-ai-tweak-btn:hover { background: #004299; }
.tk-ai-tweak-btn:disabled { opacity: .5; pointer-events: none; }

/* Andere tickets van deze klant meteen afsluiten */
.tk-reply-actions-wrap {
  border-top: 1px solid #e1e3e5;
  background: #f7f7f7;
  flex-shrink: 0;
}
.tk-reply-actions-wrap .tk-reply-actions {
  border-top: none;
  background: transparent;
}
.tk-close-others {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px 0;
  font-size: 12px;
  color: #5c6166;
  cursor: pointer;
}
.tk-close-others input { accent-color: #008060; cursor: pointer; }
.tk-close-others:hover { color: #202223; }

/* Afsluiten zonder een mail te versturen */
.tk-btn-close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 550;
  padding: 8px 14px;
  border: 1px solid #c9cccf;
  border-radius: 8px;
  background: #fff;
  color: #5c6166;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.tk-btn-close:hover {
  border-color: #008060;
  color: #008060;
}
.tk-btn-close:disabled { opacity: .5; pointer-events: none; }

/* De pagineringrij mag niet reageren als een gewone ticketrij */
.tk-pagination-row,
.tk-pagination-row:hover {
  background: #fff;
  cursor: default;
}
.tk-pagination-row td { border-bottom: none; }

/* =====================
   TABBLOKKEN
   Status, escalatie en categorie zijn drie aparte filters, dus drie
   aparte blokken met ruimte ertussen. Binnen een blok horen de tabs
   bij elkaar en delen ze één kader.
   ===================== */
.tk-tab-groups {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.tk-tab-groups .tk-status-tabs { margin-bottom: 0; }

/* Aantal open tickets achter de tabnaam */
.tk-tab-count {
  font-size: 10px;
  font-weight: 700;
  opacity: .65;
  margin-left: 3px;
  font-variant-numeric: tabular-nums;
}
/* Categorie zonder open tickets: wel zichtbaar, niet opdringerig */
.tk-tab.leeg { color: #c9cccf; }
.tk-tab.leeg:hover { color: #6d7175; }

/* =====================
   MEERDERE BESTELLINGEN
   Nieuwste links. Klik je op een nummer, dan tonen de producten en de
   tracking die bestelling. Zonder dit zie je altijd de laatste order,
   ook als de vraag van de klant over een eerdere gaat.
   ===================== */
.tk-order-pills {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 6px 0 2px;
}
.tk-order-pill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 7px;
  border: 1px solid #e1e3e5;
  background: #fff;
  color: #6d7175;
  cursor: pointer;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transition: all .12s;
}
.tk-order-pill:hover { border-color: #005bd3; color: #005bd3; }
.tk-order-pill.actief {
  background: #202223;
  border-color: #202223;
  color: #fff;
  font-weight: 500;
}
.tk-order-pill-datum { opacity: .65; margin-left: 4px; font-size: 10px; }
