/* ════ MEETINGS DASHBOARD STYLES ════ */

.mtg-header {
  display: flex; gap: 12px; align-items: center; margin-bottom: 20px;
  background: var(--bg2); padding: 14px 18px; border-radius: 8px; border: 1px solid var(--border);
}
.mtg-tech-select {
  width: auto; min-width: 200px; margin-bottom: 0; background: var(--bg3); font-weight: 700;
}
.btn-purple {
  background: var(--purple2); color: var(--purple); border: 1px solid rgba(168, 85, 247, 0.2);
}

.mtg-board-empty {
  text-align: center; padding: 60px 20px; color: var(--txt3);
}

/* Job Cards */
.mtg-job-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02); overflow: hidden;
}
.mtg-job-hdr {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 16px;
  background: var(--bg3); border-bottom: 1px solid var(--border);
}
.mtg-job-title { font-size: 15px; font-weight: 800; color: var(--txt); }
.mtg-link-btn {
  font-size: 11px; font-weight: 700; color: var(--blue); background: var(--blue2);
  padding: 4px 10px; border-radius: 6px; text-decoration: none; transition: opacity 0.15s;
}
.mtg-link-btn:hover { opacity: 0.8; }

/* Tasks & Live Editing */
.mtg-task-row {
  padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; gap: 12px; align-items: flex-start;
}
.mtg-task-row:last-child { border-bottom: none; }
.mtg-task-content { flex: 1; }

.mtg-text-display {
  font-size: 14px; color: var(--txt); line-height: 1.5; font-weight: 500; cursor: pointer;
  padding: 4px; border-radius: 4px; transition: background 0.15s;
}
.mtg-text-display:hover { background: var(--bg3); }

/* The Edit State */
.mtg-edit-box { display: none; margin-top: 4px; }
.mtg-edit-box.active { display: block; }
.mtg-text-display.hidden { display: none; }

.mtg-textarea {
  width: 100%; resize: vertical; min-height: 60px; font-size: 14px; margin-bottom: 6px;
}

/* Before & After Visual Diff */
.mtg-diff-old {
  font-size: 11px; color: var(--red); text-decoration: line-through; margin-top: 6px;
  background: var(--red2); padding: 4px 8px; border-radius: 4px; display: inline-block;
}
.mtg-diff-new {
  font-size: 14px; color: var(--green); font-weight: 600;
}
