/* ── Bingo Hub Light Theme ── */
:root {
  --bg:          #FFFFFF;
  --sidebar:     #F5F5F5;
  --card:        #FFFFFF;
  --card-border: #E5E5E5;
  --orange:      #FF6B00;
  --orange-d:    #e05e00;
  --orange-glow: rgba(255,107,0,0.20);
  --orange-tint: #FFF4EE;
  --text:        #0A0A0A;
  --muted:       #555555;
  --wa-green:    #25D366;
  --wa-green-d:  #1DA851;
  --red:         #e53e3e;
  --red-d:       #c53030;
  --radius:      8px;
  --shadow:      0 2px 8px rgba(0,0,0,0.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
}

/* ── Scrollbars ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Layout ── */
.app { display: flex; height: 100vh; }

/* ── Sidebar ── */
.sidebar {
  width: 220px;
  min-width: 220px;
  background: var(--sidebar);
  display: flex;
  flex-direction: column;
  padding: 0;
  border-right: 1px solid var(--card-border);
}

/* ── Brand wordmark ── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--card-border);
}
.brand-wordmark { display: flex; align-items: baseline; gap: 0; line-height: 1; }
.brand-bingo { color: var(--orange); font-size: 18px; font-weight: 800; letter-spacing: -0.3px; }
.brand-hub   { color: var(--text);   font-size: 18px; font-weight: 800; letter-spacing: -0.3px; }
.brand-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,0.60); }
  70%  { box-shadow: 0 0 0 7px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}

/* ── Nav ── */
nav { display: flex; flex-direction: column; padding: 12px 8px; gap: 2px; }
.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  position: relative;
}
.nav-btn:hover { background: rgba(255,107,0,0.06); color: var(--text); }
.nav-btn.active {
  border-left-color: var(--orange);
  color: var(--orange);
  background: var(--orange-tint);
  font-weight: 600;
}
.nav-icon { font-size: 15px; }

/* ── Main ── */
.main { flex: 1; overflow: hidden; display: flex; flex-direction: column; background: var(--bg); }

/* ── Tabs ── */
.tab { display: none; flex-direction: column; flex: 1; overflow: hidden; padding: 28px 32px; gap: 16px; }
.tab.active { display: flex; }
.tab-full.active { padding: 0; }

/* ── Tab Header ── */
.tab-header { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.tab-header h2 { font-size: 22px; font-weight: 800; color: var(--text); }

/* ── Two-panel ── */
.two-panel { display: flex; gap: 16px; flex: 1; overflow: hidden; }
.panel-left {
  width: 230px; min-width: 230px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  overflow-y: auto;
  padding: 8px;
}
.panel-right {
  flex: 1;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* ── List items ── */
.list-item {
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.1s;
}
.list-item:hover { background: #F9F9F9; }
.list-item.active { background: var(--orange-tint); border-left: 3px solid var(--orange); color: var(--orange); }
.list-item.active .count { color: rgba(255,107,0,0.70); }
.list-item strong { font-size: 14px; }
.list-item .count { font-size: 12px; color: var(--muted); }

/* ── Panel toolbar ── */
.panel-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--card-border); flex-shrink: 0;
}
.panel-toolbar h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.toolbar-actions { display: flex; gap: 8px; }

/* ── Data table ── */
.table-wrap { flex: 1; overflow: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table thead th {
  background: #F9F9F9;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--card-border);
  white-space: nowrap;
}
.data-table tbody td { padding: 10px 14px; border-bottom: 1px solid var(--card-border); color: var(--text); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(odd)  { background: #FFFFFF; }
.data-table tbody tr:nth-child(even) { background: #F9F9F9; }
.data-table tbody tr:hover { background: var(--orange-tint); }

.btn-icon { background: none; border: none; cursor: pointer; padding: 4px 6px; border-radius: 4px; font-size: 14px; transition: background 0.1s; color: var(--muted); }
.btn-icon:hover { background: #F0F0F0; color: var(--text); }
.btn-icon-danger:hover { background: #fff0f0; color: var(--red); }

/* ── Template editor ── */
.template-item {
  padding: 12px; border-radius: 6px; cursor: pointer;
  border: 1px solid transparent; margin-bottom: 4px; transition: all 0.1s;
}
.template-item:hover { border-color: var(--card-border); background: #F9F9F9; }
.template-item.active { border-color: var(--orange); background: var(--orange-tint); }
.template-item .t-name { font-weight: 700; font-size: 14px; color: var(--text); }
.t-type-badge { font-size: 11px; font-weight: 700; color: var(--orange); background: var(--orange-tint); border-radius: 4px; padding: 1px 6px; display: inline-block; margin: 2px 0; }
.template-item .t-preview { font-size: 12px; color: var(--muted); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

#template-editor-panel { padding: 0; }
.editor-form { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.editor-form label { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ── Template builder ── */
.te-builder-empty { font-size: 13px; color: var(--muted); padding: 10px 0; font-style: italic; }
.te-builder-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: #F9F9F9;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  margin-bottom: 6px;
}
.te-option-num { font-size: 12px; color: var(--muted); font-weight: 700; min-width: 20px; }
.te-section-block {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  background: #FAFAFA;
}
.te-row-item { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.te-row-title { font-size: 12px; font-weight: 600; color: var(--text); }
.te-row-desc  { font-size: 12px; color: var(--muted); }
.te-add-row-btn {
  font-size: 12px; padding: 5px 10px;
  background: var(--orange-tint);
  border: 1px solid rgba(255,107,0,0.30);
  color: var(--orange);
  border-radius: 5px; cursor: pointer; transition: background 0.15s;
}
.te-add-row-btn:hover { background: rgba(255,107,0,0.15); }

/* ── Send form ── */
.send-form { overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.form-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 20px; }
.card-title { font-size: 15px; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.radio-row { display: flex; gap: 20px; margin-bottom: 12px; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; color: var(--text); }

/* ── Preview ── */
.preview-msg-card { background: #F9F9F9; border: 1px solid var(--card-border); border-radius: 8px; padding: 12px 14px; margin-top: 12px; font-size: 13.5px; }
.preview-msg-card .preview-contact { font-weight: 600; color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.preview-bubble { background: var(--orange); color: #fff; border-radius: 8px; padding: 8px 12px; white-space: pre-wrap; font-size: 14px; display: inline-block; max-width: 100%; border-bottom-right-radius: 2px; }
.preview-media-badge { font-size: 12px; color: var(--orange); background: var(--orange-tint); border: 1px solid rgba(255,107,0,0.20); padding: 4px 8px; border-radius: 4px; margin-bottom: 6px; word-break: break-all; }
.preview-footer { font-size: 12px; color: var(--muted); margin-top: 6px; font-style: italic; }
.preview-buttons { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.preview-btn { padding: 5px 14px; border-radius: 6px; background: var(--orange-tint); border: 1.5px solid var(--orange); color: var(--orange); font-size: 13px; font-weight: 700; }
.preview-list { background: #F9F9F9; border: 1px solid var(--card-border); border-radius: 6px; padding: 8px 12px; margin-top: 8px; font-size: 13px; }
.preview-section-title { font-weight: 700; color: var(--orange); font-size: 11px; text-transform: uppercase; margin: 6px 0 2px; }
.preview-list-row { padding: 5px 0; border-bottom: 1px solid var(--card-border); color: var(--text); }
.preview-list-row:last-child { border-bottom: none; }
.preview-poll-q { font-weight: 800; font-size: 15px; margin-bottom: 8px; color: var(--text); }
.preview-poll-opts { display: flex; flex-direction: column; gap: 4px; }
.preview-poll-opt { background: #F9F9F9; border: 1px solid var(--card-border); border-radius: 6px; padding: 6px 10px; font-size: 13px; color: var(--text); }

/* ── Progress ── */
.progress-wrap { display: flex; flex-direction: column; gap: 8px; }
.progress-bar-bg { background: #E5E5E5; border-radius: 99px; height: 8px; overflow: hidden; }
.progress-bar-fill { background: var(--orange); height: 100%; width: 0%; transition: width 0.4s; border-radius: 99px; }
#progress-label { font-size: 14px; color: var(--muted); }
#progress-result { margin-top: 12px; padding: 12px; border-radius: 6px; background: #F9F9F9; border: 1px solid var(--card-border); font-size: 14px; color: var(--text); }

.btn-send-now { width: 100%; padding: 14px; font-size: 16px; }

/* ── Schedule ── */
.schedule-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.schedule-card .s-info { display: flex; flex-direction: column; gap: 4px; }
.schedule-card .s-title { font-weight: 700; font-size: 15px; color: var(--text); }
.schedule-card .s-meta { font-size: 13px; color: var(--muted); }
.schedule-card .s-actions { display: flex; gap: 8px; }

/* ── Status pills ── */
.status-pill { display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: 12px; font-weight: 700; }
.status-pending { background: var(--orange-tint); color: var(--orange); }
.status-sending { background: #fffbe6; color: #b45309; }
.status-sent    { background: #f0fdf4; color: var(--wa-green-d); }
.status-failed  { background: #fff0f0; color: var(--red); }

/* ── Live Chats ── */
.chats-layout { display: flex; flex: 1; overflow: hidden; height: 100%; }
.chats-sidebar {
  width: 280px; min-width: 280px;
  border-right: 1px solid var(--card-border);
  display: flex; flex-direction: column;
  background: var(--card); overflow: hidden;
}
.chats-sidebar-header { padding: 16px 18px; font-weight: 800; font-size: 15px; border-bottom: 1px solid var(--card-border); flex-shrink: 0; color: var(--text); }
#conversations-list { overflow-y: auto; flex: 1; }
.convo-item {
  padding: 12px 18px; border-bottom: 1px solid var(--card-border);
  cursor: pointer; display: flex; align-items: flex-start; gap: 10px; transition: background 0.1s;
  border-left: 3px solid transparent;
}
.convo-item:hover { background: #F9F9F9; }
.convo-item.active { background: var(--orange-tint); border-left-color: var(--orange); }
.convo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-tint); border: 1.5px solid rgba(255,107,0,0.30);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.convo-body { flex: 1; overflow: hidden; }
.convo-name { font-weight: 700; font-size: 14px; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.convo-time { font-size: 11px; color: var(--muted); }
.convo-preview { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.unread-badge {
  min-width: 20px; height: 20px; background: #25D366; color: #fff;
  border-radius: 10px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px; flex-shrink: 0; margin-top: 2px;
}

.chat-window { flex: 1; display: flex; flex-direction: column; background: #F5F5F5; overflow: hidden; }
.chat-header { background: var(--card); padding: 12px 20px; border-bottom: 1px solid var(--card-border); font-weight: 700; font-size: 15px; flex-shrink: 0; color: var(--text); }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.msg-bubble { max-width: 65%; padding: 8px 12px; border-radius: 10px; font-size: 14px; line-height: 1.4; }
.msg-in  { background: #FFFFFF; color: var(--text); align-self: flex-start; border-bottom-left-radius: 2px; border: 1px solid var(--card-border); }
.msg-out { background: var(--orange); color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }
.msg-time { font-size: 11px; color: var(--muted); margin-top: 3px; text-align: right; }
.chat-input-bar {
  background: var(--card); padding: 12px 16px; border-top: 1px solid var(--card-border);
  display: flex; gap: 10px; align-items: center; flex-shrink: 0;
}
.chat-input-bar input { flex: 1; padding: 10px 14px; border-radius: 24px; border: 1px solid var(--card-border); background: #F9F9F9; color: var(--text); font-size: 14px; outline: none; transition: border-color 0.15s, box-shadow 0.15s; }
.chat-input-bar input::placeholder { color: #AAAAAA; }
.chat-input-bar input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.10); background: #FFFFFF; }

/* ── Reports ── */
.stats-row { display: flex; gap: 16px; }
.stat-card { flex: 1; background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-card .stat-val { font-size: 36px; font-weight: 800; color: var(--orange); }
.stat-card .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Buttons ── */
.btn { padding: 8px 16px; border-radius: var(--radius); border: none; cursor: pointer; font-size: 14px; font-weight: 700; transition: background 0.15s, opacity 0.15s, box-shadow 0.15s; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 16px var(--orange-glow); }
.btn-primary:hover:not(:disabled) { background: var(--orange-d); box-shadow: 0 6px 24px rgba(255,107,0,0.30); }
.btn-secondary { background: #F0F0F0; color: var(--text); border: 1px solid var(--card-border); }
.btn-secondary:hover:not(:disabled) { background: #E8E8E8; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover:not(:disabled) { background: var(--red-d); }
.btn-sm { padding: 5px 12px; font-size: 13px; }

/* ── Forms ── */
.form-control {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-control::placeholder { color: #AAAAAA; }
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.10); }
textarea.form-control { resize: vertical; }
select.form-control option { background: #FFFFFF; color: var(--text); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.modal { background: #FFFFFF; border: 1px solid var(--card-border); border-radius: 12px; width: 460px; max-width: 95vw; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--card-border); }
.modal-header h3 { font-size: 17px; font-weight: 800; color: var(--text); }
.modal-close { background: none; border: none; cursor: pointer; font-size: 20px; color: var(--muted); padding: 2px 6px; transition: color 0.15s; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 22px; overflow-y: auto; flex: 1; }
.modal-footer { padding: 14px 22px; border-top: 1px solid var(--card-border); display: flex; gap: 10px; justify-content: flex-end; }

/* ── Badge ── */
.badge { background: var(--orange); color: #fff; border-radius: 99px; font-size: 11px; font-weight: 700; padding: 1px 7px; margin-left: auto; }

/* ── Toast ── */
#toast-container { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 8px; z-index: 2000; }
.toast { padding: 12px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 600; box-shadow: 0 4px 24px rgba(0,0,0,0.12); animation: slideIn 0.25s ease; max-width: 320px; }
.toast-success { background: #f0fdf4; color: var(--wa-green-d); border: 1px solid #bbf7d0; }
.toast-error   { background: #fff0f0; color: var(--red-d);      border: 1px solid #fecaca; }
.toast-info    { background: var(--orange-tint); color: var(--orange-d); border: 1px solid rgba(255,107,0,0.25); }
@keyframes slideIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── Empty state ── */
.empty-state { padding: 40px; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Misc ── */
.hidden { display: none !important; }
#schedule-list { overflow-y: auto; }
h3 { color: var(--text); }

/* ════════════════════════════════════════
   EMAIL MARKETING
   ════════════════════════════════════════ */

/* Sub-navigation */
.email-subnav {
  display: flex; gap: 2px; flex-shrink: 0;
  border-bottom: 2px solid var(--card-border);
  margin-bottom: 0;
}
.subnav-btn {
  padding: 8px 18px; border: none; background: none;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color 0.15s, border-color 0.15s;
}
.subnav-btn:hover { color: var(--text); }
.subnav-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

/* Email panels */
.email-panel { display: none; flex: 1; flex-direction: column; min-height: 0; overflow: hidden; padding-top: 16px; }
.email-panel.active { display: flex; }

/* Contacts panel toolbar */
.email-panel-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; flex-shrink: 0; margin-bottom: 14px;
}
.email-toolbar-left  { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.email-toolbar-right { display: flex; gap: 8px; align-items: center; }

/* Tag chip and lang badge */
.ec-tag {
  display: inline-block; padding: 1px 7px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
  background: var(--orange-tint); color: var(--orange); margin: 1px 2px;
}
.ec-lang {
  display: inline-block; padding: 1px 7px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  background: #F0F0F0; color: var(--muted);
}

/* Template editor split */
.email-editor-split {
  display: flex; gap: 12px; flex: 1; min-height: 0; height: 300px;
}
.email-editor-split textarea { flex: 1; min-width: 0; }
.email-preview-pane {
  flex: 1; min-width: 0; border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden; background: #fff;
}

/* Broadcast tag grid */
.email-tag-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px;
}
.email-tag-check {
  display: flex; align-items: center; gap: 6px; font-size: 14px;
  cursor: pointer; padding: 6px 12px; border-radius: var(--radius);
  border: 1px solid var(--card-border); background: #F9F9F9;
  transition: border-color 0.15s, background 0.15s;
}
.email-tag-check:has(input:checked) {
  border-color: var(--orange); background: var(--orange-tint); color: var(--orange);
}
.email-tag-check input { accent-color: var(--orange); }
.email-recipient-info { font-size: 13px; color: var(--muted); min-height: 20px; }

/* Sequences layout */
.seq-layout {
  display: flex; gap: 16px; flex: 1; overflow: hidden;
}
.seq-left {
  width: 340px; min-width: 280px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto;
}
.seq-right { flex: 1; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.seq-section-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; padding-bottom: 10px; border-bottom: 1px solid var(--card-border);
}
.seq-section-header strong { font-size: 14px; font-weight: 700; color: var(--text); }

/* Sequence card */
.seq-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.seq-card-info { flex: 1; }
.seq-card-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.seq-card-meta { font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.seq-card-actions { display: flex; gap: 6px; flex-shrink: 0; }

/* Enrollment card */
.enroll-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 12px 16px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.enroll-info { flex: 1; }
.enroll-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.enroll-meta { font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.enroll-actions { display: flex; gap: 6px; flex-shrink: 0; }
