/* ── Board page layout ───────────────────────────────────────────────────── */

.board-page {
  overflow: hidden;
  height: 100vh;
}

.board-page .main-footer {
  display: none;
}

/* ── Toolbar ─────────────────────────────────────────────────────────────── */

.board-toolbar {
  position: fixed;
  top: 72px; /* below main-header */
  left: 0;
  right: 0;
  height: 44px;
  background: #fff;
  border-bottom: 1px solid #e5ded5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}

.toolbar-right {
  justify-content: flex-end;
}

.toolbar-center {
  flex: 1;
  text-align: center;
}

.board-title {
  font-size: 15px;
  font-weight: 600;
  color: #7a6855;
  letter-spacing: 0.5px;
}

.tool-btn {
  background: #f5f2ed;
  border: 1px solid #e5ded5;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  color: #5d4c3c;
  transition: all 0.15s;
  white-space: nowrap;
}

.tool-btn:hover {
  background: #ece7e0;
  border-color: #c8b8a8;
}

.tool-btn.create-btn {
  background: #7a6855;
  color: white;
  border-color: #7a6855;
  font-weight: 600;
}

.tool-btn.create-btn:hover {
  background: #5d4c3c;
  border-color: #5d4c3c;
}



.zoom-display {
  font-size: 12px;
  color: #999;
  min-width: 40px;
  text-align: center;
}

/* ── Main wrapper (sidebar + canvas) ─────────────────────────────────────── */

.board-wrapper {
  position: fixed;
  top: 116px; /* header + toolbar */
  left: 0;
  right: 0;
  bottom: 60px; /* above bottom nav */
  display: flex;
  overflow: hidden;
}

/* ── Ticket sidebar ──────────────────────────────────────────────────────── */

.ticket-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #faf8f5;
  border-right: 1px solid #e5ded5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.ticket-sidebar.drop-target {
  background: #e8f5e9;
  border-right: 2px dashed #7a6855;
  box-shadow: inset -4px 0 12px rgba(122,104,85,0.12);
}

.ticket-sidebar.drop-target .sidebar-hint {
  color: #7a6855;
  font-weight: 600;
  content: 'Drop to remove from board';
}

.ticket-sidebar.collapsed {
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.sidebar-header {
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e5ded5;
  font-size: 12px;
  font-weight: 600;
  color: #7a6855;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-search {
  width: 100%;
  padding: 5px 8px;
  font-size: 12px;
  border: 1px solid #e0d8cf;
  border-radius: 5px;
  background: #fff;
  color: #333;
  outline: none;
  box-sizing: border-box;
}

.sidebar-search:focus {
  border-color: #7a6855;
}

.sidebar-ticket-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-loading {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}

.sidebar-hint {
  padding: 8px 12px;
  font-size: 11px;
  color: #bbb;
  text-align: center;
  border-top: 1px solid #ede8e3;
}

/* Sidebar ticket chip */
.sidebar-ticket {
  background: #fff;
  border: 1px solid #e5ded5;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  cursor: grab;
  user-select: none;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
}

.sidebar-ticket:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}

.sidebar-ticket:active {
  cursor: grabbing;
}

.sidebar-ticket.color-1 { background-color: #b9c5c5; border-color: #a8b5b5; }
.sidebar-ticket.color-2 { background-color: #dcb6af; border-color: #cca09a; }
.sidebar-ticket.color-3 { background-color: #f9efe0; border-color: #e8d8c0; }
.sidebar-ticket.color-4 { background-color: #8e8e8e; border-color: #7a7a7a; color: #fff; }

.sidebar-ticket-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-ticket.color-4 .sidebar-ticket-title { color: #fff; }

.sidebar-ticket-serial {
  font-size: 11px;
  font-weight: 700;
  color: #555;
}

.sidebar-ticket.color-4 .sidebar-ticket-serial { color: #ddd; }

.sidebar-ticket.on-board {
  opacity: 0.45;
}

.sidebar-ticket.on-board::after {
  content: '✓ on board';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: #7a6855;
  font-weight: 600;
}

/* ── Canvas ──────────────────────────────────────────────────────────────── */

.canvas-container {
  overflow: hidden;
  position: relative;
  background-color: #f0ece6;
  background-image:
    radial-gradient(circle, #c8b8a840 1px, transparent 1px);
  background-size: 28px 28px;
  cursor: default;
  flex: 1; /* default: full width without calendar */
}

.canvas-container.panning {
  cursor: grabbing;
}

.canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  /* transform set by JS */
}

/* ── Board ticket cards ───────────────────────────────────────────────────── */

.board-card {
  position: absolute;
  width: 220px;
  background: #fff;
  border: 1px solid #e5ded5;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  cursor: grab;
  user-select: none;
  transition: box-shadow 0.15s, transform 0.1s;
  overflow: hidden;
}

.board-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.14), 0 2px 6px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.board-card.dragging-card {
  cursor: grabbing;
  box-shadow: 0 12px 36px rgba(0,0,0,0.20);
  transform: scale(1.03) translateY(-4px);
  z-index: 1000;
}

/* Color variants */
.board-card.color-1 { background-color: #b9c5c5; border-color: #a8b5b5; }
.board-card.color-2 { background-color: #dcb6af; border-color: #cca09a; }
.board-card.color-3 { background-color: #f9efe0; border-color: #e8d8c0; }
.board-card.color-4 { background-color: #8e8e8e; border-color: #7a7a7a; }

/* Card header */
.board-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 10px 6px;
  gap: 6px;
}

.board-card-info {
  flex: 1;
  min-width: 0;
}

.board-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.25;
  margin: 0 0 2px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.board-card.color-4 .board-card-title { color: #fff; }

.board-card-date {
  font-size: 10px;
  color: #777;
  line-height: 1.2;
}

.board-card.color-4 .board-card-date { color: #ddd; }

.board-card-serial {
  background: rgba(0,0,0,0.15);
  color: #222;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Notes area */
.board-card-notes-wrap {
  margin: 0 10px 6px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.55);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.board-card-notes-label {
  font-size: 10px;
  font-weight: 500;
  color: #888;
  padding: 3px 8px;
  background: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.board-card-notes {
  font-size: 12px;
  line-height: 1.45;
  color: #444;
  padding: 6px 8px;
  overflow-y: auto;
  max-height: 100px;
  white-space: pre-wrap;
  word-break: break-word;
  flex: 1;
  cursor: text;
  outline: none;
}

.board-card-notes:empty::before {
  content: 'Click to add notes…';
  color: #bbb;
  font-style: italic;
}

.board-card-notes.editing {
  outline: 2px solid #7a6855;
  background: rgba(255,255,255,0.85);
}

.board-card.color-4 .board-card-notes { color: #eee; }
.board-card.color-4 .board-card-notes-label { color: #ccc; }

/* Card footer */
.board-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 8px;
  gap: 4px;
}

.board-card-open-btn,
.board-card-color-btn,
.board-card-arc-btn,
.board-card-remove-btn {
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  color: #555;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.board-card-open-btn:hover {
  background: rgba(255,255,255,0.9);
}

.board-card-color-btn:hover {
  background: rgba(255,255,255,0.9);
  border-color: #7a6855;
  color: #7a6855;
}

.board-card-arc-btn:hover {
  background: rgba(255,200,100,0.25);
  border-color: #c8860a;
  color: #8a5a00;
}

.board-card-remove-btn {
  color: #aaa;
  padding: 3px 6px;
}

.board-card-remove-btn:hover {
  background: rgba(220,50,50,0.12);
  color: #c0392b;
  border-color: rgba(220,50,50,0.3);
}

/* ── Drop zone overlay (appears when dragging from sidebar) ──────────────── */

.canvas-container.drag-over {
  outline: 3px dashed #7a6855;
  outline-offset: -3px;
}

/* ── Empty board state ───────────────────────────────────────────────────── */

.board-empty-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #c0b5a8;
  pointer-events: none;
  user-select: none;
}

.board-empty-hint .hint-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.board-empty-hint p {
  font-size: 15px;
  margin: 0;
  opacity: 0.6;
}

/* ── Ticket edit modal on board ──────────────────────────────────────────── */

#boardTicketModal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
}

#boardTicketModal .modal-inner {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  overflow: hidden;
}

#boardTicketModal .modal-header {
  padding: 18px 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#boardTicketModal .modal-header h2 {
  margin: 0;
  font-size: 17px;
  color: #3d3d3d;
}

#boardTicketModal .modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  padding: 0;
}

#boardTicketModal .modal-body {
  padding: 14px 22px;
  flex: 1;
  overflow-y: auto;
}

#boardTicketModal .modal-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

#boardTicketModal .modal-notes {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fafafa;
  min-height: 100px;
  white-space: pre-wrap;
  word-break: break-word;
  outline: none;
  cursor: text;
}

#boardTicketModal .modal-notes:focus {
  border-color: #7a6855;
  outline: 2px solid #7a685540;
}

#boardTicketModal .modal-footer {
  padding: 12px 22px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ── Collaborator cursors ────────────────────────────────────────────────── */

.collab-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 900;
  transition: left 0.1s linear, top 0.1s linear;
}

.collab-cursor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.collab-cursor-label {
  font-size: 11px;
  font-weight: 600;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
  white-space: nowrap;
}

/* ── Auth check (reuse from other pages) ─────────────────────────────────── */

.board-page .auth-check {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2ed;
  z-index: 100;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .ticket-sidebar {
    width: 180px;
  }
  .board-card {
    width: 180px;
  }
}

/* ── Calendar panel ──────────────────────────────────────────────────────── */

.calendar-panel {
  flex: 4 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #f5f2ed;
  border-left: 2px solid #e5ded5;
  overflow: hidden;
  box-sizing: border-box;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #e5ded5;
  flex-shrink: 0;
  gap: 10px;
}

.calendar-header-title {
  font-size: 14px;
  font-weight: 700;
  color: #5d4c3c;
  white-space: nowrap;
}

.calendar-nav-btn {
  background: #f5f2ed;
  border: 1px solid #e5ded5;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
  color: #7a6855;
  transition: background 0.15s;
  flex-shrink: 0;
}

.calendar-nav-btn:hover {
  background: #ece7e0;
}

.calendar-nav-btn.today-btn {
  font-weight: 600;
  color: #5d4c3c;
}

.calendar-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px 6px 24px;
  box-sizing: border-box;
}

/* Week label rows — sticky at top of scroll area */
.calendar-week-label {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
  margin-bottom: 3px;
  position: sticky;
  top: 0;
  background: #f5f2ed;
  z-index: 10;
  padding: 4px 0;
}

.calendar-dow {
  font-size: 11px;
  font-weight: 700;
  color: #bbb;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Day grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
  width: 100%;
  box-sizing: border-box;
}

.calendar-day {
  background: #fff;
  border: 1.5px solid #e5ded5;
  border-radius: 8px;
  min-height: 110px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.calendar-day:hover {
  border-color: #c8b8a8;
}

.calendar-day.drag-over-day {
  border-color: #7a6855;
  background: #f9f5f0;
  box-shadow: 0 0 0 2px #7a685530;
}

.calendar-day.is-today {
  border-color: #7a6855;
  background: #fdf8f3;
}

.calendar-day.is-today .cal-day-number {
  background: #7a6855;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day.past-day {
  background: #fafafa;
  opacity: 0.75;
}

.calendar-day.other-month {
  background: #f8f6f3;
  opacity: 0.5;
}

.cal-day-number {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  line-height: 1;
  margin-bottom: 2px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-day-tickets {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

/* Ticket chip inside calendar day */
.cal-ticket-chip {
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  cursor: grab;
  user-select: none;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  transition: box-shadow 0.12s, transform 0.12s;
  min-width: 0;
}

.cal-ticket-chip:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.cal-ticket-chip:active {
  cursor: grabbing;
}

.cal-ticket-chip.color-1 { background: #b9c5c5; border-color: #a8b5b5; }
.cal-ticket-chip.color-2 { background: #dcb6af; border-color: #cca09a; }
.cal-ticket-chip.color-3 { background: #f9efe0; border-color: #e8d8c0; }
.cal-ticket-chip.color-4 { background: #8e8e8e; border-color: #7a7a7a; color: #fff; }

.cal-chip-serial {
  font-size: 10px;
  font-weight: 800;
  opacity: 0.7;
  flex-shrink: 0;
}

.cal-chip-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cal-chip-remove {
  font-size: 11px;
  color: #aaa;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 1px;
  line-height: 1;
  transition: color 0.12s;
}

.cal-chip-remove:hover {
  color: #e53e3e;
}

/* Over-scheduled warning */
.cal-overflow-badge {
  font-size: 10px;
  font-weight: 700;
  color: #c0392b;
  text-align: center;
  padding: 2px 0;
}

/* Freeform canvas shrinks to 20% */
.canvas-container {
  flex: 1; /* overridden below when calendar is present */
}

.board-wrapper.with-calendar .canvas-container {
  flex: 1 1 0;
  min-width: 0;
  max-width: 20%;
}

.board-wrapper.with-calendar .calendar-panel {
  display: flex;
}

/* Month separator — spans full 7-col grid */
.calendar-month-separator {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  color: #7a6855;
  padding: 14px 2px 6px;
  letter-spacing: 0.3px;
  border-top: 1px solid #e5ded5;
  margin-top: 4px;
}

/* Week row — pass-through so cells sit directly in the 7-col grid */
.calendar-week-row {
  display: contents;
}

@media (max-width: 900px) {
  .board-wrapper.with-calendar .canvas-container {
    display: none;
  }
  .calendar-panel {
    width: 100% !important;
  }
}

/* ── Sidebar archived search results ─────────────────────────────────────── */

.sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 4px 4px;
  border-top: 1px solid #e5ded5;
  margin-top: 4px;
}

.sidebar-ticket.archived-chip {
  opacity: 0.7;
  border-style: dashed;
}

.sidebar-ticket.archived-chip .sidebar-ticket-title {
  text-decoration: line-through;
  text-decoration-color: #aaa;
}

/* Archived chips on calendar */
.cal-ticket-chip.archived-chip {
  opacity: 0.72;
  border-style: dashed;
}

.cal-ticket-chip.archived-chip .cal-chip-title {
  text-decoration: line-through;
  text-decoration-color: #aaa;
}

/* Calendar highlight when a board card is dragged over it */
.calendar-panel.drag-over-calendar {
  outline: 3px dashed #7a6855;
  outline-offset: -3px;
}

/* ── Sticky notes ────────────────────────────────────────────────────────── */

.tool-btn.sticky-btn {
  background: #f9efe0;
  border-color: #e8d8c0;
  color: #7a6855;
  font-weight: 600;
}

.tool-btn.sticky-btn:hover {
  background: #f0e4cc;
  border-color: #c8a870;
}

.board-sticky {
  position: absolute;
  width: 200px;
  min-height: 160px;
  border-radius: 3px;
  padding: 0;
  display: flex;
  flex-direction: column;
  cursor: grab;
  user-select: none;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.15s;
}

.board-sticky:hover {
  box-shadow: 5px 5px 18px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.1);
}

.board-sticky.dragging-card {
  cursor: grabbing;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.25);
  transform: rotate(1deg) scale(1.02);
}

/* Color variants */
.board-sticky.sticky-yellow { background: #fff9c4; }
.board-sticky.sticky-pink   { background: #ffd6e0; }
.board-sticky.sticky-blue   { background: #d0e8ff; }
.board-sticky.sticky-green  { background: #d4f0d4; }

/* Fold effect bottom-right corner */
.board-sticky::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(225deg, rgba(0,0,0,0.12) 50%, transparent 50%);
  border-radius: 0 0 3px 0;
}

.sticky-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px 5px;
  gap: 6px;
  flex-shrink: 0;
}

.sticky-author {
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-color-btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  cursor: pointer;
  flex-shrink: 0;
  background: rgba(0,0,0,0.1);
  transition: transform 0.12s;
}

.sticky-color-btn:hover {
  transform: scale(1.3);
}

.sticky-delete-btn {
  font-size: 14px;
  color: rgba(0,0,0,0.3);
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  padding: 0 2px;
  transition: color 0.12s;
}

.sticky-delete-btn:hover {
  color: rgba(200,0,0,0.6);
}

.sticky-body {
  flex: 1;
  padding: 2px 10px 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.75);
  outline: none;
  cursor: text;
  word-break: break-word;
  white-space: pre-wrap;
  min-height: 120px;
}

.sticky-body:empty::before {
  content: 'Type a note…';
  color: rgba(0,0,0,0.25);
  font-style: italic;
  pointer-events: none;
}

.sticky-body.editing {
  cursor: text;
}
