/* ─── Trainer Dashboard ────────────────────────────────────────────────────── */

.btn-trainer-dash {
  background: none; border: none; cursor: pointer;
  color: var(--teal); font-size: 18px; padding: 6px 8px;
  border-radius: 8px; transition: background .2s;
}
.btn-trainer-dash:hover { background: rgba(0,200,180,.12); }

.td-loading, .td-error {
  text-align: center; padding: 60px 20px;
  color: var(--muted); font-size: 16px;
}
.td-error { color: var(--danger, #e74c3c); }

.td-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 24px 16px 60px;
}

.td-header {
  margin-bottom: 24px;
}
.td-title {
  font-size: 22px; font-weight: 700;
  color: var(--text); margin: 0 0 4px;
}
.td-title i { color: var(--teal); margin-right: 8px; }
.td-subtitle {
  font-size: 14px; color: var(--muted); margin: 0;
}

/* Stats grid */
.td-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 28px;
}
.td-stat-card {
  background: var(--card-bg); border-radius: 12px;
  padding: 16px 12px; text-align: center;
  border: 1px solid var(--border);
}
.td-stat-icon {
  font-size: 20px; color: var(--teal); margin-bottom: 6px;
}
.td-stat-value {
  font-size: 24px; font-weight: 700; color: var(--text);
}
.td-stat-label {
  font-size: 12px; color: var(--muted); margin-top: 2px;
}

/* Sections */
.td-section {
  background: var(--card-bg); border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px; margin-bottom: 20px;
}
.td-section-title {
  font-size: 16px; font-weight: 600;
  color: var(--text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.td-section-title i { color: var(--teal); }

/* New class form */
.td-class-form { display: flex; flex-direction: column; gap: 12px; }
.td-form-row { display: flex; gap: 12px; }
.td-form-group { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.td-form-group label {
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.td-form-group input,
.td-form-group select {
  padding: 10px 12px; border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg); color: var(--text);
  font-size: 14px; font-family: inherit;
}
.td-form-group input:focus,
.td-form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(0,200,180,.15);
}

.td-form-grow { flex: 2; }

/* Occurrence fields */
.td-occurrence { margin-bottom: 4px; }
.td-occurrence-multi {
  border-left: 3px solid var(--teal);
  padding-left: 12px; margin-bottom: 12px;
}
.td-occ-label {
  font-size: 13px; font-weight: 600; color: var(--teal);
  margin-bottom: 4px;
}

/* Tabs */
.td-tab-bar {
  display: flex; gap: 4px; margin-bottom: 16px;
  border-bottom: 2px solid var(--border); padding-bottom: 0;
}
.td-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 10px 18px; cursor: pointer; font-size: 14px; font-weight: 600;
  color: var(--muted); font-family: inherit; margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.td-tab:hover { color: var(--text); }
.td-tab.active {
  color: var(--teal); border-bottom-color: var(--teal);
}
.td-tab i { margin-right: 6px; }
.td-tab-content { animation: tdFadeIn .2s ease; }
@keyframes tdFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Collapsible sections */
.td-collapsible {
  cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between;
}
.td-collapsible:hover { color: var(--teal); }
.td-collapse-icon { font-size: 12px; color: var(--muted); transition: transform .2s; }
.td-collapse-content { animation: tdFadeIn .2s ease; }

/* Mini calendar */
.td-cal-wrap { margin-bottom: 8px; }
.td-cal-month-header {
  font-size: 13px; font-weight: 700; color: var(--text);
  margin: 12px 0 6px; text-transform: capitalize;
}
.td-cal-day-headers {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
  margin-bottom: 4px;
}
.td-cal-day-name {
  text-align: center; font-size: 11px; font-weight: 600; color: var(--muted);
}
.td-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
  margin-bottom: 4px;
}
.td-cal-day {
  position: relative; text-align: center; padding: 6px 2px;
  border-radius: 6px; cursor: pointer; font-size: 13px;
  background: var(--bg); transition: background .15s, box-shadow .15s;
  min-height: 34px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1px;
}
.td-cal-empty { background: transparent; cursor: default; }
.td-cal-day:not(.td-cal-empty):hover { background: var(--border); }
.td-cal-today {
  font-weight: 700; box-shadow: inset 0 0 0 2px var(--teal);
}
.td-cal-busy { background: #fff3cd; color: #333; }
.td-cal-full { background: #fdd; color: #333; }
.td-cal-mine { border-left: 3px solid var(--teal); }
.td-cal-zoom { background: #e8f0fe; color: #333; }
.td-cal-busy .td-cal-date,
.td-cal-full .td-cal-date,
.td-cal-zoom .td-cal-date { color: #1a1a1a; }
.td-cal-busy .td-cal-count,
.td-cal-full .td-cal-count,
.td-cal-zoom .td-cal-count { color: #555; }
.td-cal-past { opacity: .45; }
.td-cal-active { box-shadow: 0 0 0 2px var(--teal); background: var(--card-bg); }
.td-cal-date { font-weight: 500; color: var(--text); line-height: 1; }
.td-cal-count {
  font-size: 9px; font-weight: 700; color: var(--muted); line-height: 1;
}

/* Calendar legend */
.td-cal-legend {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px;
  font-size: 12px; color: var(--muted);
}
.td-cal-legend-item { display: flex; align-items: center; gap: 4px; }
.td-cal-dot {
  width: 10px; height: 10px; border-radius: 3px; display: inline-block;
}
.td-cal-dot-free { background: var(--bg); border: 1px solid var(--border); }
.td-cal-dot-busy { background: #fff3cd; }
.td-cal-dot-zoom { background: #e8f0fe; }
.td-cal-dot-full { background: #fdd; }
.td-cal-dot-mine { background: var(--bg); border-left: 3px solid var(--teal); }

/* Calendar detail panel */
.td-cal-detail {
  margin-top: 10px; padding: 12px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 8px;
}
.td-cal-detail-header {
  font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.td-cal-detail-empty {
  color: var(--teal); font-size: 13px; margin: 0;
}
.td-cal-detail-empty i { margin-right: 4px; }
.td-cal-detail-hint {
  color: var(--muted); font-size: 13px; margin: 0;
}
.td-cal-detail-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px; border-radius: 6px; background: var(--bg);
  font-size: 13px; margin-bottom: 4px;
}
.td-cal-detail-mine { border-left: 3px solid var(--teal); }
.td-cal-detail-zoom { border-left: 3px solid #4285f4; }
.td-cal-badge-zoom {
  font-size: 10px; font-weight: 600; color: #4285f4;
  background: rgba(66,133,244,.1); padding: 2px 6px; border-radius: 4px;
  white-space: nowrap;
}
.td-cal-join-link {
  color: var(--teal); font-size: 12px; margin-left: 4px;
  text-decoration: none; opacity: .7; transition: opacity .2s;
}
.td-cal-join-link:hover { opacity: 1; }
.td-cal-detail-time {
  min-width: 100px; font-weight: 500; color: var(--text); white-space: nowrap;
}
.td-cal-detail-title {
  flex: 1; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.td-schedule-badge {
  font-size: 11px; font-weight: 600; color: var(--teal);
  background: rgba(0,200,180,.12); padding: 2px 8px; border-radius: 4px;
}
.td-empty-msg { color: var(--muted); font-size: 14px; margin: 0; }
.td-top-me { background: rgba(0,200,180,.08); border: 1px solid rgba(0,200,180,.2); }
.td-slot-status { font-size: 12px; margin-top: 2px; display: block; }
.td-slot-free { color: var(--teal); }
.td-slot-free::before { content: '✓ '; }
.td-slot-busy { color: #e74c3c; }
.td-slot-busy::before { content: '✗ '; }
.td-form-hint {
  font-size: 13px; color: var(--muted); margin: 0 0 12px;
  padding: 8px 12px; background: rgba(0,200,180,.06); border-radius: 6px;
}

.td-btn-primary {
  background: var(--teal); color: #fff; border: none;
  padding: 10px 20px; border-radius: 8px; cursor: pointer;
  font-size: 14px; font-weight: 600; font-family: inherit;
  align-self: flex-start; transition: opacity .2s;
}
.td-btn-primary:hover { opacity: .88; }
.td-btn-primary:disabled { opacity: .5; cursor: not-allowed; }

/* Classes list */
.td-classes-list { display: flex; flex-direction: column; gap: 8px; }
.td-class-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px; border-radius: 8px;
  background: var(--bg); gap: 12px;
}
.td-class-cancelled { opacity: .55; }
.td-class-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.td-class-title {
  font-weight: 600; font-size: 14px; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.td-class-meta {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.td-zoom-link {
  color: var(--teal); text-decoration: none; margin-left: 4px;
}
.td-zoom-link:hover { text-decoration: underline; }
.td-class-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.td-class-status {
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 6px; text-transform: uppercase;
}
.td-status-confirmed { background: rgba(0,200,180,.15); color: var(--teal); }
.td-status-cancelled { background: rgba(231,76,60,.12); color: #e74c3c; }
.td-btn-cancel {
  background: none; border: 1px solid rgba(231,76,60,.3);
  color: #e74c3c; width: 28px; height: 28px; border-radius: 6px;
  cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.td-btn-cancel:hover { background: rgba(231,76,60,.1); }
.td-btn-edit {
  background: none; border: 1px solid rgba(26,138,125,.3);
  color: var(--teal); width: 28px; height: 28px; border-radius: 6px;
  cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.td-btn-edit:hover { background: rgba(26,138,125,.1); }

/* Inline edit form */
.td-edit-form {
  padding: 12px 0 4px;
  border-top: 1px dashed var(--border);
  margin-top: 8px;
}
.td-edit-form .td-form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.td-edit-form .td-form-group { display: flex; flex-direction: column; gap: 4px; }
.td-edit-form .td-form-grow { flex: 1; min-width: 180px; }
.td-edit-form label { font-size: 12px; color: var(--muted); font-weight: 600; }
.td-edit-form input, .td-edit-form select {
  padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; background: var(--card-bg); color: var(--text);
}
.td-edit-actions {
  display: flex; gap: 8px; margin-top: 10px;
}
.td-btn-save {
  background: var(--teal); color: #fff; border: none;
  padding: 6px 16px; border-radius: 6px; font-size: 13px;
  cursor: pointer; font-weight: 600; transition: background .2s;
}
.td-btn-save:hover { background: var(--teal-light); }
.td-btn-save:disabled { opacity: .6; cursor: not-allowed; }
.td-btn-cancel-edit {
  background: none; color: var(--muted); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 6px; font-size: 13px;
  cursor: pointer; transition: background .2s;
}
.td-btn-cancel-edit:hover { background: var(--bg); }

/* Top videos */
.td-top-list { display: flex; flex-direction: column; gap: 6px; }
.td-top-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px; background: var(--bg);
}
.td-top-rank {
  font-weight: 700; color: var(--teal); min-width: 28px;
}
.td-top-title {
  flex: 1; font-size: 14px; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.td-top-views {
  font-size: 13px; color: var(--muted); white-space: nowrap;
}

/* Monthly chart */
.td-chart { display: flex; flex-direction: column; gap: 8px; }
.td-chart-bar {
  display: flex; align-items: center; gap: 10px;
}
.td-bar-label {
  min-width: 80px; font-size: 13px; color: var(--muted); text-align: right;
}
.td-bar-track {
  flex: 1; height: 20px; background: var(--bg);
  border-radius: 10px; overflow: hidden;
}
.td-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--teal), #00d4aa);
  border-radius: 10px; min-width: 4px;
  transition: width .4s ease;
}
.td-bar-value {
  min-width: 36px; font-size: 13px; font-weight: 600; color: var(--text);
}

/* Ratings */
.td-rating-avg {
  font-size: 13px; color: var(--muted); font-weight: 400; margin-left: auto;
}
.td-ratings-list { display: flex; flex-direction: column; gap: 12px; }
.td-rating-row {
  padding: 12px; border-radius: 8px; background: var(--bg);
}
.td-rating-header {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 4px;
}
.td-rating-stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.td-rating-class { font-size: 13px; font-weight: 500; color: var(--text); }
.td-rating-date { font-size: 12px; color: var(--muted); margin-left: auto; }
.td-rating-comment {
  font-size: 13px; color: var(--text); margin: 4px 0 6px;
  line-height: 1.4;
}
.td-rating-author { font-size: 12px; color: var(--muted); }

.td-participants {
  color: var(--teal); font-weight: 500;
}
.td-btn-sync {
  background: none; border: 1px solid rgba(0,200,180,.3);
  color: var(--teal); width: 28px; height: 28px; border-radius: 6px;
  cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.td-btn-sync:hover { background: rgba(0,200,180,.1); }
.td-btn-sync:disabled { opacity: .5; cursor: not-allowed; }

/* Social Media Form */
.td-social-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px; margin-bottom: 16px;
}
.td-social-field {
  display: flex; flex-direction: column; gap: 4px;
}
.td-social-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.td-social-icon { font-size: 16px; width: 20px; text-align: center; }
.td-social-icon-facebook { color: #1877f2; }
.td-social-icon-instagram { color: #e4405f; }
.td-social-icon-youtube { color: #ff0000; }
.td-social-icon-tiktok { color: #010101; }
.td-social-icon-linkedin { color: #0a66c2; }
.td-social-icon-whatsapp { color: #25d366; }
.td-social-icon-website { color: var(--teal); }
.td-social-input {
  background: var(--bg); border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 8px 12px; color: var(--text);
  font-size: 13px; transition: border-color .2s;
}
.td-social-input:focus {
  outline: none; border-color: var(--teal);
}
.td-social-input::placeholder { color: rgba(255,255,255,.2); }
.td-social-preview {
  margin-top: 16px; padding: 12px; border-radius: 10px;
  background: rgba(0,200,180,.05); border: 1px solid rgba(0,200,180,.15);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.td-social-preview-title {
  font-size: 12px; font-weight: 600; color: var(--text);
  width: 100%; margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 680px) {
  .td-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .td-form-row { flex-direction: column; }
  .td-class-row { flex-direction: column; align-items: flex-start; }
  .td-class-actions { align-self: flex-end; }
}
@media (max-width: 480px) {
  .td-wrap { padding: 16px 10px 40px; }
  .td-title { font-size: 18px; }
  .td-stat-value { font-size: 20px; }
}

/* ─── Materials Tab ──────────────────────────────────────────────────────────── */

.tm-dropzone {
  border: 2px dashed var(--border, #ccc);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.tm-dropzone:hover, .tm-dropzone.tm-drag-over {
  border-color: var(--teal);
  background: rgba(0, 200, 180, 0.06);
}
.tm-drop-icon {
  font-size: 36px;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.tm-drop-text {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.tm-file-input {
  display: none;
}

.tm-upload-form {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border, #eee);
  border-radius: 10px;
  background: var(--bg-card, #fff);
}
.tm-file-preview {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 12px;
}
.tm-file-preview i {
  margin-right: 6px;
  color: var(--teal);
}
.tm-upload-actions {
  display: flex;
  gap: 10px;
}

.td-btn-secondary {
  background: none;
  border: 1px solid var(--border, #ccc);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: background .2s;
}
.td-btn-secondary:hover {
  background: rgba(0,0,0,.04);
}

/* Materials list */
.tm-materials-list {
  min-height: 40px;
}
.tm-loading, .tm-empty {
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 14px;
}

.tm-row {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border, #eee);
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--bg-card, #fff);
  transition: box-shadow .2s;
}
.tm-row:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.tm-row-icon {
  font-size: 22px;
  color: var(--teal);
  width: 36px;
  flex-shrink: 0;
}
.tm-row-info {
  flex: 1;
  min-width: 0;
}
.tm-row-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tm-row-meta {
  font-size: 12px;
  color: var(--muted);
}
.tm-row-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 8px;
}
.tm-btn-edit, .tm-btn-delete {
  background: none;
  border: 1px solid var(--border, #ddd);
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  transition: color .2s, border-color .2s;
}
.tm-btn-edit:hover {
  color: var(--teal);
  border-color: var(--teal);
}
.tm-btn-delete:hover {
  color: var(--danger, #e74c3c);
  border-color: var(--danger, #e74c3c);
}

.tm-inline-edit {
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--teal);
  border-radius: 4px;
  padding: 2px 6px;
  width: 100%;
  outline: none;
  background: var(--bg-card, #fff);
  color: var(--text);
}

/* ─── Dark mode ──────────────────────────────────────────────────────────────── */
[data-theme="dark"] .tm-dropzone {
  border-color: #333;
}
[data-theme="dark"] .tm-dropzone:hover,
[data-theme="dark"] .tm-dropzone.tm-drag-over {
  border-color: var(--teal);
  background: rgba(0, 200, 180, 0.08);
}
[data-theme="dark"] .tm-upload-form {
  background: var(--bg-card, #1a1a2e);
  border-color: #333;
}
[data-theme="dark"] .tm-row {
  background: var(--bg-card, #1a1a2e);
  border-color: #333;
}
[data-theme="dark"] .td-btn-secondary {
  border-color: #444;
  color: var(--text);
}
[data-theme="dark"] .td-btn-secondary:hover {
  background: rgba(255,255,255,.06);
}

/* ─── Comments Tab ───────────────────────────────────────────────────────────── */
.tc-messages { max-height: 500px; overflow-y: auto; padding: 4px 0; }
.tc-loading { text-align: center; padding: 20px; color: var(--muted); }
.tc-msg { padding: 10px 14px; border-bottom: 1px solid var(--border, #eee); }
.tc-msg-own { background: rgba(0,200,180,.04); }
.tc-msg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.tc-msg-email { font-size: 12px; font-weight: 600; color: var(--teal); }
.tc-msg-email i { margin-right: 4px; }
.tc-msg-time { font-size: 11px; color: var(--muted); }
.tc-msg-text { font-size: 14px; color: var(--text); line-height: 1.5; word-break: break-word; }
.tc-reply-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border, #eee); background: var(--bg-card, #fff); }
.tc-reply-input { flex: 1; padding: 8px 12px; border: 1px solid var(--border, #ccc); border-radius: 8px; font-size: 14px; background: var(--bg-card, #fff); color: var(--text); outline: none; }
.tc-reply-input:focus { border-color: var(--teal); }
.tc-reply-btn { padding: 8px 14px; background: var(--teal); color: #fff; border: none; border-radius: 8px; cursor: pointer; font-size: 14px; transition: opacity .2s; }
.tc-reply-btn:hover { opacity: .85; }
.tc-reply-btn:disabled { opacity: .5; cursor: default; }
.tc-empty { text-align: center; padding: 30px; color: var(--muted); font-size: 14px; }
.tc-empty i { margin-right: 6px; }

[data-theme="dark"] .tc-msg { border-color: #333; }
[data-theme="dark"] .tc-msg-own { background: rgba(0,200,180,.06); }
[data-theme="dark"] .tc-reply-form { background: var(--bg-card, #1a1a2e); border-color: #333; }
[data-theme="dark"] .tc-reply-input { background: var(--bg-card, #1a1a2e); border-color: #444; color: var(--text); }

/* ─── Comment Moderation ─────────────────────────────────────────────────────── */
.tc-msg-actions { display: flex; align-items: center; gap: 8px; }
.tc-msg-delete {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 12px; padding: 2px 4px;
  border-radius: 4px; transition: color .2s;
  opacity: 0;
}
.tc-msg:hover .tc-msg-delete { opacity: 1; }
.tc-msg-delete:hover { color: var(--danger, #e74c3c); }

/* Tab notification badge */
.td-tab-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--danger, #e74c3c); color: #fff;
  border-radius: 9px; font-size: 11px; font-weight: 700;
  margin-left: 6px; line-height: 1;
}

[data-theme="dark"] .tc-msg-delete { color: #555; }
[data-theme="dark"] .tc-msg-delete:hover { color: var(--danger, #e74c3c); }
