:root {
  --primary: #526fe8;
  --ink: #202a3b;
  --muted: #788397;
  --line: #e5e9f0;
  --page: #f4f7fb;
  --success: #28946d;
  --warning: #d78a27;
  --danger: #d6545b;
}
body {
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 14px;
}
.app-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  min-height: 68px;
}
.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #5877ec, #7655cf);
  border-radius: 9px;
  color: #fff;
  display: flex;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
}
.eyebrow {
  color: #8994a7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.card {
  border: 0;
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(32, 42, 59, 0.055);
}
.metric {
  align-items: center;
  display: flex;
  gap: 13px;
  padding: 19px;
}
.metric-icon {
  align-items: center;
  border-radius: 10px;
  display: flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.metric strong,
.metric small {
  display: block;
}
.metric strong {
  font-size: 23px;
}
.metric small {
  color: var(--muted);
  font-size: 11px;
}
.metric.overdue .metric-icon {
  background: #ffeaec;
  color: var(--danger);
}
.metric.pending .metric-icon {
  background: #fff1dc;
  color: var(--warning);
}
.metric.metric-progress .metric-icon {
  background: #eaf0ff;
  color: var(--primary);
}
.progress-icon {
  position: relative;
}
.progress-ring {
  width: 19px;
  height: 19px;
  border: 3px solid #b9c6f7;
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  border-radius: 50%;
  transform: rotate(18deg);
}
.progress-ring::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}
.metric.completed .metric-icon {
  background: #e5f6ef;
  color: var(--success);
}
.workflow {
  display: flex;
  margin: 26px 0 10px;
}
.workflow-step {
  flex: 1;
  position: relative;
  text-align: center;
}
.workflow-step:after {
  background: #dfe4ec;
  content: "";
  height: 2px;
  left: 60%;
  position: absolute;
  right: -40%;
  top: 17px;
}
.workflow-step:last-child:after {
  display: none;
}
.workflow-step i {
  align-items: center;
  background: #e9edf3;
  border-radius: 50%;
  color: #8490a1;
  display: flex;
  font-size: 11px;
  font-style: normal;
  height: 34px;
  justify-content: center;
  margin: auto;
  position: relative;
  width: 34px;
  z-index: 1;
}
.workflow-step span {
  color: #7c8798;
  display: block;
  font-size: 10px;
  margin-top: 8px;
}
.workflow-step.done i {
  background: #e4f5ed;
  color: var(--success);
}
.workflow-step.current i {
  background: var(--primary);
  box-shadow: 0 5px 12px rgba(82, 111, 232, 0.3);
  color: #fff;
}
.workflow-step.done:after {
  background: #82c9ae;
}
.meeting-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 14px;
  transition: 0.2s;
}
.meeting-item:hover,
.meeting-item.active {
  background: #f1f4ff;
  border-color: #aebcf1;
}
.meeting-item h3 {
  font-size: 13px;
  margin: 7px 0;
}
.meeting-item p {
  color: var(--muted);
  font-size: 10px;
  margin: 0;
}
.team-meeting-filters { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .4rem; }
.team-meeting-filters button { padding: .55rem .4rem; border: 1px solid #e0e6f0; border-radius: 9px; background: #f8f9fc; color: #66738b; font-size: .67rem; font-weight: 700; line-height: 1.25; }
.team-meeting-filters button:hover { border-color: #c7d2f9; color: #3f5ed2; }
.team-meeting-filters button.active { border-color: #aebdf5; background: #e9eeff; color: #3657d5; box-shadow: 0 3px 8px rgba(79, 109, 229, .1); }
.team-meeting-filters button span { display: inline-grid; place-items: center; min-width: 19px; height: 19px; margin-left: .2rem; padding: 0 .25rem; border-radius: 99px; background: #fff; color: inherit; font-size: .63rem; }
@media (max-width: 575.98px) { .team-meeting-filters { grid-template-columns: 1fr; } .team-meeting-filters button { display: flex; justify-content: space-between; align-items: center; } }
.status {
  border-radius: 12px;
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
}
.status-awaiting {
  background: #fff1dc;
  color: #bb771e;
}
.status-approved {
  background: #e5f6ef;
  color: #238a65;
}
.status-draft {
  background: #edf1ff;
  color: #4865cf;
}
.detail-placeholder {
  color: var(--muted);
  padding: 70px 20px;
  text-align: center;
}
.submission-box {
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.submission-box h4 {
  font-size: 13px;
}
.submission-box p {
  color: #657185;
  font-size: 12px;
  line-height: 1.65;
}
.action-row {
  align-items: center;
  border-bottom: 1px solid #eef1f4;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1.5fr) 150px 85px 100px 110px;
  padding: 14px 4px;
}
.action-row:last-child {
  border: 0;
}
.action-row strong {
  font-size: 11px;
}
.action-row small {
  color: var(--muted);
  display: block;
  font-size: 9px;
  margin-top: 4px;
}
.priority {
  font-size: 9px;
  font-weight: 700;
}
.priority.high {
  color: var(--danger);
}
.priority.medium {
  color: var(--warning);
}
.priority.low {
  color: var(--success);
}
.action-status {
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 10px;
  padding: 6px;
}
.approval-bar {
  align-items: center;
  background: #eef2ff;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
}
.approval-bar p {
  color: #5f6d83;
  font-size: 11px;
  margin: 0;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
}
.form-control,
.form-select {
  border-color: #dce1e8;
  font-size: 13px;
}
.empty {
  color: var(--muted);
  padding: 35px;
  text-align: center;
}
.action-header,
.action-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.action-toolbar {
  background: #fbfcfe;
}
.action-tabs {
  display: flex;
  gap: 6px;
}
.action-tabs button {
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: #738095;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 11px;
}
.action-tabs button:hover {
  background: #f0f3f8;
  color: #45536a;
}
.action-tabs button.active {
  background: #eaf0ff;
  color: #4763cc;
}
.action-tabs button span {
  background: #fff;
  border-radius: 9px;
  margin-left: 4px;
  padding: 2px 6px;
}
.action-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 180px;
}
.action-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  min-height: 185px;
  padding: 16px;
  transition: 0.2s;
}
.action-card:hover {
  border-color: #bdc9f4;
  box-shadow: 0 9px 25px rgba(36, 51, 84, 0.08);
  transform: translateY(-2px);
}
.action-card-top,
.action-card footer {
  align-items: center;
  display: flex;
}
.priority-pill {
  border-radius: 11px;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
}
.priority-pill.high { background: #ffeaec; color: #cc5259; }
.priority-pill.medium { background: #fff1dc; color: #bd781e; }
.priority-pill.low { background: #e6f6ef; color: #268765; }
.action-card-status {
  border: 0;
  color: #6c788b;
  font-size: 10px;
  margin-left: auto;
  max-width: 110px;
  min-height: 30px;
  padding: 3px 22px 3px 6px;
}
.action-card h3 {
  font-size: 13px;
  line-height: 1.5;
  margin: 16px 0 6px;
}
.action-source {
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 18px;
}
.action-card footer {
  border-top: 1px solid #eef0f3;
  gap: 9px;
  margin-top: auto;
  padding-top: 12px;
}
.owner-avatar {
  align-items: center;
  background: #eaf0ff;
  border-radius: 8px;
  color: #4864ce;
  display: flex;
  flex: 0 0 auto;
  font-size: 9px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.owner-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.owner-info strong {
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.owner-info small { color: var(--muted); font-size: 8px; }
.due-date { color: #718095; font-size: 9px; margin-left: auto; }
.due-date.overdue { color: #d1545a; font-weight: 700; }
.action-completed { background: #fafbfc; }
.action-completed h3 { color: #8c95a3; text-decoration: line-through; }
@media (max-width: 767px) {
  .workflow {
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .workflow-step {
    flex: 0 0 100px;
  }
  .action-row {
    grid-template-columns: 1fr 90px;
  }
  .action-row > *:nth-child(2),
  .action-row > *:nth-child(4) {
    display: none;
  }
  .approval-bar {
    align-items: stretch;
    flex-direction: column;
  }
  .action-header,
  .action-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .action-tabs {
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .action-tabs button { flex: 0 0 auto; }
  .action-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .action-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.completed-meetings-panel { border: 0; box-shadow: 0 8px 24px rgba(30, 45, 80, .06); }
.admin-calendar-weekdays, .admin-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.admin-calendar-weekdays { margin-bottom: .45rem; }
.admin-calendar-weekdays span { color: #8490a6; font-size: .68rem; font-weight: 700; text-align: center; text-transform: uppercase; }
.admin-calendar-day { position: relative; min-height: 44px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: #273652; font-size: .82rem; }
.admin-calendar-day:hover { background: #f1f4ff; }
.admin-calendar-day.today { border-color: #c9d4ff; }
.admin-calendar-day.selected { background: #4f6de5; color: #fff; box-shadow: 0 5px 12px rgba(79, 109, 229, .24); }
.admin-calendar-day small { position: absolute; right: 4px; bottom: 3px; display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: #e8edff; color: #4160d5; font-size: .61rem; font-weight: 700; }
.admin-calendar-day.selected small { background: #fff; }

.admin-workspace-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.admin-workspace-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.admin-sidebar-stack {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.admin-workspace-content > .row:first-child { order: 0; }
#completedMeetings { order: 1; }
#momSubmissions { order: 2; }
#statusVerification { order: 3; }
#allActionItems { order: 4; }
#actions { order: 5; margin-top: 1.5rem; }
#adminDashboard { order: 6; }
.admin-side-menu {
  position: static;
  padding: 1.1rem;
  border: 1px solid #e3e8f2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 47, 78, .06);
}
.admin-side-menu .nav { gap: .45rem; }
.admin-side-link {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: .7rem;
  align-items: center;
  padding: .75rem;
  border-radius: 11px;
  color: #35435e;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.admin-side-link:hover,
.admin-side-link:focus-visible {
  color: #3155d9;
  background: #eef2ff;
  transform: translateX(2px);
}
.admin-side-link.active {
  color: #3155d9;
  background: #e8edff;
  box-shadow: inset 3px 0 #4f6de5;
}
.admin-side-link.active > span { background: #4f6de5; color: #fff; }
.admin-side-link > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #eef2ff;
  color: #4160d5;
  font-size: .78rem;
  font-weight: 700;
}
.admin-side-link strong,
.admin-side-link small { display: block; }
.admin-side-link strong { font-size: .84rem; }
.admin-side-link small { margin-top: .15rem; color: #7b879d; font-size: .68rem; line-height: 1.35; }
.admin-workspace-content > section,
.admin-anchor-section { scroll-margin-top: 82px; }

@media (max-width: 991.98px) {
  .admin-workspace-layout { grid-template-columns: 1fr; }
  .admin-sidebar-stack { position: static; }
  .admin-side-menu { position: static; overflow-x: auto; }
  .admin-side-menu .nav { flex-flow: row nowrap; min-width: max-content; }
  .admin-side-link { min-width: 210px; }
}

.admin-dashboard-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
.dashboard-stat { position: relative; overflow: hidden; padding: 1rem; border: 1px solid #e3e8f2; border-radius: 14px; background: #fff; }
.dashboard-stat::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: #7083c7; content: ""; }
.dashboard-stat small, .dashboard-stat span { display: block; }
.dashboard-stat small { color: #65738b; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.dashboard-stat strong { display: block; margin: .28rem 0; color: #1d2a44; font-size: 1.75rem; line-height: 1; }
.dashboard-stat span { color: #8792a6; font-size: .68rem; }
.dashboard-stat.pending::before { background: #e5a62d; }
.dashboard-stat.status-progress::before { background: #4f6de5; }
.dashboard-stat.completed::before { background: #35a47a; }
.dashboard-stat.overdue::before { background: #db5361; }
.dashboard-stat.meeting::before { background: #7657d6; }
.dashboard-stat.mom::before { background: #25a0b8; }
.dashboard-chart-card { padding: 1.15rem; border: 1px solid #e3e8f2; }
.dashboard-chart-card h3 { margin: 0; font-size: .95rem; font-weight: 700; }
.dashboard-bars { display: grid; gap: .85rem; margin-top: 1.25rem; }
.dashboard-bar-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .35rem; color: #536179; font-size: .72rem; font-weight: 600; }
.dashboard-bar-track { overflow: hidden; height: 10px; border-radius: 99px; background: #edf0f5; }
.dashboard-bar-fill { height: 100%; min-width: 3px; border-radius: inherit; background: #4f6de5; }
.dashboard-bar-fill.pending { background: #e5a62d; }
.dashboard-bar-fill.progress { background: #4f6de5; }
.dashboard-bar-fill.completed { background: #35a47a; }
.dashboard-bar-fill.overdue { background: #db5361; }
.dashboard-bar-fill.requested { background: #7657d6; }
.dashboard-bar-fill.received { background: #25a0b8; }
.dashboard-bar-fill.approved { background: #35a47a; }
.dashboard-overdue-list { display: grid; gap: .65rem; margin-top: 1rem; }
.dashboard-overdue-row { display: grid; grid-template-columns: minmax(0, 1fr) 160px 110px; gap: 1rem; align-items: center; padding: .75rem; border-radius: 10px; background: #fafbfe; }
.dashboard-overdue-row strong, .dashboard-overdue-row small { display: block; }
.dashboard-overdue-row small { color: #8490a4; font-size: .68rem; }
@media (max-width: 1199.98px) { .admin-dashboard-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px) { .admin-dashboard-metrics { grid-template-columns: 1fr; } .dashboard-overdue-row { grid-template-columns: 1fr; gap: .25rem; } }
.empty-day { min-height: 44px; }
.completed-meeting-list { display: grid; gap: .75rem; max-height: 390px; overflow: auto; }
.completed-meeting-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border: 1px solid #e2e7f0; border-radius: 12px; background: #fff; }
.completed-meeting-card h4 { margin: 0 0 .3rem; font-size: .97rem; font-weight: 700; }
.completed-meeting-card p { margin: 0 0 .55rem; color: #6f7c96; font-size: .82rem; }
.attendee-line { color: #4f5f7c; font-size: .78rem; }
.completed-meeting-action { max-width: 160px; text-align: right; }
.request-status { display: inline-flex; padding: .25rem .55rem; border-radius: 999px; font-size: .68rem; font-weight: 700; }
.request-not-requested { background: #f1f3f7; color: #657089; }
.request-requested { background: #fff2d9; color: #ad6900; }
.request-submitted { background: #e7edff; color: #3d5dcc; }
.request-approved { background: #def5ec; color: #147a54; }
.completed-empty span { display: block; margin-top: .3rem; }
.border-end-lg { border-right: 1px solid #e4e8f0; }
.document-upload-zone { padding: 1.8rem; border: 2px dashed #cbd5e7; border-radius: 14px; background: #f9fbff; text-align: center; cursor: pointer; transition: .2s ease; }
.document-upload-zone:hover { border-color: #6982e8; background: #f3f6ff; }
.document-upload-zone .upload-icon { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto .7rem; border-radius: 12px; background: #e8edff; color: #4866db; font-size: 1.4rem; font-weight: 700; }
.document-upload-zone h3 { margin-bottom: .35rem; font-size: 1rem; font-weight: 700; }
.document-upload-zone p { max-width: 560px; margin: 0 auto 1rem; color: #6d7890; font-size: .82rem; }
.document-upload-zone small { display: block; margin-top: .7rem; color: #7f8ba2; }
.extraction-progress { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; padding: 1rem; border-radius: 10px; background: #eef3ff; color: #3553c4; }
.extraction-progress small { display: block; color: #65749b; }
.extracted-action-row { display: grid; grid-template-columns: minmax(220px, 2fr) minmax(150px, 1fr) 120px 150px 40px; gap: .65rem; align-items: end; margin-bottom: .8rem; padding: .85rem; border: 1px solid #e2e7f0; border-radius: 12px; background: #fbfcfe; }
.extracted-action-row .form-label { margin-bottom: .3rem; font-size: .72rem; }
.remove-action-row { height: 40px; color: #bd4050; }
.submission-confirmation { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; border-radius: 12px; background: #eef3ff; color: #465779; font-size: .82rem; }
@media (max-width: 991.98px) { .border-end-lg { border-right: 0; border-bottom: 1px solid #e4e8f0; } .extracted-action-row { grid-template-columns: 1fr 1fr; } .remove-action-row { grid-column: 2; justify-self: end; } }
@media (max-width: 575.98px) { .completed-meeting-card, .submission-confirmation { align-items: stretch; flex-direction: column; } .completed-meeting-action { max-width: none; text-align: left; } .extracted-action-row { grid-template-columns: 1fr; } .remove-action-row { grid-column: 1; justify-self: end; } }
.proposed-action-head, .proposed-action-edit-row, .proposed-action-read-row { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1.45fr) minmax(112px, .9fr) minmax(96px, .75fr) minmax(116px, .9fr) 38px; gap: .65rem; align-items: center; }
.proposed-action-head { padding: .65rem .75rem; border-radius: 8px 8px 0 0; background: #f1f4f9; color: #6e7b92; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.proposed-action-edit-row, .proposed-action-read-row { padding: .75rem; border: 1px solid #e2e7f0; border-top: 0; background: #fff; }
.proposed-action-edit-row:last-child, .proposed-action-read-row:last-child { border-radius: 0 0 8px 8px; }
.proposed-action-edit-row label { display: none; margin-bottom: .3rem; color: #6e7b92; font-size: .7rem; font-weight: 600; }
.proposed-action-edit-row .form-control,
.proposed-action-edit-row .form-select { width: 100%; min-width: 0; }
.proposed-action-read-row { font-size: .78rem; }
.proposed-remove { width: 34px; height: 34px; padding: 0; font-size: 1rem; }
@media (max-width: 1199.98px) { .proposed-action-head { display: none; } .proposed-action-edit-row, .proposed-action-read-row { grid-template-columns: 1fr 1fr; margin-bottom: .75rem; border: 1px solid #e2e7f0; border-radius: 10px; } .proposed-action-edit-row label { display: block; } .proposed-remove { grid-column: 2; justify-self: end; } }
@media (max-width: 575.98px) { .proposed-action-edit-row, .proposed-action-read-row { grid-template-columns: 1fr; } .proposed-remove { grid-column: 1; } }

/* Compact master-detail layout for the Admin MOM review tab. */
#momSubmissions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  margin: 0;
}
#momSubmissions > [class*="col-"] { width: auto; max-width: none; padding: 0; }
.admin-submission-queue {
  overflow: hidden;
  max-height: 440px;
  border-color: #e1e7f0;
  box-shadow: 0 8px 24px rgba(30, 47, 78, .06);
}
.admin-submission-queue #submissionList {
  min-height: 0;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
#momSubmissions #reviewPanel {
  height: auto !important;
  min-height: 500px;
  padding: 1.25rem !important;
  overflow: visible;
  border-color: #e1e7f0;
}
#momSubmissions #reviewPanel > hr { margin: 1rem 0; }
#momSubmissions #reviewPanel .submission-box {
  max-height: 220px;
  padding: 1rem;
  overflow-y: auto;
}
#momSubmissions #reviewPanel .submission-box p { white-space: pre-line; }
#momSubmissions #proposedActionRows {
  max-height: none;
  overflow: visible;
  border: 1px solid #e2e7f0;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
#momSubmissions #proposedActionRows .proposed-action-edit-row,
#momSubmissions #proposedActionRows .proposed-action-read-row { border-right: 0; border-left: 0; }
#momSubmissions #proposedActionRows .proposed-action-edit-row:first-child,
#momSubmissions #proposedActionRows .proposed-action-read-row:first-child { border-top: 0; }
#momSubmissions .approval-bar { margin-top: 1rem !important; }
@media (max-width: 1199.98px) {
  #momSubmissions #proposedActionRows { border-top: 1px solid #e2e7f0; border-radius: 10px; }
}
@media (max-width: 767.98px) {
  #momSubmissions { grid-template-columns: 1fr; }
  .admin-submission-queue { max-height: 300px; }
  .admin-submission-queue #submissionList { max-height: 220px; }
  #momSubmissions #reviewPanel { height: auto !important; min-height: 500px; max-height: none; }
  #momSubmissions #reviewPanel .submission-box { max-height: 180px; }
}
.all-actions-head { display: grid; min-width: 760px; grid-template-columns: 48px minmax(220px, 1.5fr) 150px 85px 100px 110px; gap: 12px; padding: .65rem 4px; border-radius: 8px 8px 0 0; background: #f1f4f9; color: #6e7b92; font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.consolidated-action-row { min-width: 760px; grid-template-columns: 48px minmax(220px, 1.5fr) 150px 85px 100px 110px; }
.admin-workspace-content #allActions { overflow-x: auto; }
.action-serial { color: #52617a; font-weight: 700; text-align: center; }
@media (max-width: 767.98px) {
  .all-actions-head { display: none; }
  .consolidated-action-row { min-width: 0; grid-template-columns: 36px minmax(0, 1fr) 90px; }
  .consolidated-action-row > *:nth-child(2) { display: block; }
  .consolidated-action-row > *:nth-child(3),
  .consolidated-action-row > *:nth-child(4),
  .consolidated-action-row > *:nth-child(5) { display: none; }
}
.team-action-metric { min-height: 132px; padding: 1rem; align-items: center; justify-content: center; text-align: center; border: 0; box-shadow: 0 7px 20px rgba(29, 44, 77, .06); }
.team-action-metric span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: .35rem; border-radius: 10px; background: #edf1ff; color: #4966db; font-size: .72rem; font-weight: 700; }
.team-action-metric strong { color: #16213a; font-size: 1.45rem; line-height: 1.1; }
.team-action-metric small { margin-top: .25rem; color: #6f7b93; }
.team-action-metric.metric-pending span { background: #fff1da; color: #bc7200; }
.team-action-metric.metric-progress span { background: #e8edff; color: #4866dd; }
.team-action-metric.metric-complete span { background: #e1f4ed; color: #18805d; }
.team-action-metric.metric-overdue span { background: #ffe6e9; color: #d53f50; }
.team-status-control { display: grid; gap: .25rem; }
.verification-pending { color: #a86600 !important; font-size: .66rem !important; font-weight: 600; }
.status-request-row { display: grid; grid-template-columns: minmax(240px, 1fr) auto auto; align-items: center; gap: 1.25rem; padding: 1rem; border-bottom: 1px solid #e9edf3; }
.status-request-row:last-child { border-bottom: 0; }
.status-request-main { display: flex; align-items: center; gap: .75rem; }
.status-request-main strong, .status-request-main small { display: block; }
.status-request-main small { margin-top: .2rem; color: #77839a; font-size: .7rem; }
.status-change { display: flex; align-items: center; gap: .6rem; padding: .45rem .7rem; border-radius: 9px; background: #f3f5f9; font-size: .76rem; }
.status-change i { color: #7d89a0; font-style: normal; }
.status-change strong { color: #4562d5; }
@media (max-width: 767.98px) { .status-request-row { grid-template-columns: 1fr; } .status-change { justify-content: center; } }
.team-actions-head { display: grid; grid-template-columns: minmax(220px, 1.5fr) 150px 85px 100px 110px; gap: 12px; padding: .65rem 4px; border-radius: 8px 8px 0 0; background: #f1f4f9; color: #6e7b92; font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
@media (max-width: 767.98px) { .team-actions-head { display: none; } }
:root {
  --brand: #4f6de1;
  --brand-dark: #3f59c7;
  --ink: #202a3b;
  --muted: #758095;
  --line: #e6eaf0;
  --page: #f5f7fa;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.navbar {
  min-height: 68px;
}
.navbar-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}
.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #5877ec, #7655cf);
  border-radius: 9px;
  color: #fff;
  display: flex;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.nav-link {
  color: #657186;
  font-size: 13px;
  font-weight: 600;
}
.nav-link.active {
  color: var(--brand) !important;
}
.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
}
.eyebrow {
  color: #8994a7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.date-chip {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: flex;
  gap: 10px;
  padding: 9px 13px;
}
.date-chip span {
  color: var(--muted);
  font-size: 11px;
}
.date-chip strong {
  font-size: 12px;
}
.card {
  border-radius: 12px;
}
.card-header {
  border-radius: 12px 12px 0 0 !important;
}
.form-label {
  color: #4f5b6f;
  font-size: 12px;
  font-weight: 600;
}
.form-control,
.form-select {
  border-color: #dce1e8;
  border-radius: 8px;
  font-size: 13px;
  min-height: 42px;
}
.form-control:focus,
.form-select:focus {
  border-color: #8095eb;
  box-shadow: 0 0 0 0.2rem rgba(79, 109, 225, 0.12);
}
.invitee-menu {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(28, 39, 61, 0.14);
  max-height: 340px;
}
.employee-list {
  max-height: 240px;
  overflow-y: auto;
}
.employee-option {
  align-items: center;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 8px;
}
.employee-option:hover {
  background: #f3f6ff;
}
.employee-option input {
  flex: 0 0 auto;
}
.employee-option span {
  display: flex;
  flex-direction: column;
}
.employee-option strong {
  font-size: 12px;
}
.employee-option small {
  color: var(--muted);
  font-size: 10px;
}
.selected-invitees {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.invitee-chip {
  align-items: center;
  background: #edf1ff;
  border-radius: 14px;
  color: #4662c5;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 5px;
  padding: 5px 9px;
}
.invitee-chip button {
  background: none;
  border: 0;
  color: inherit;
  line-height: 1;
  padding: 0;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.calendar-weekdays span {
  color: #8a95a7;
  font-size: 10px;
  font-weight: 700;
  padding: 9px 2px;
  text-align: center;
  text-transform: uppercase;
}
.calendar-day {
  background: #fff;
  border: 1px solid #edf0f4;
  min-height: 74px;
  padding: 7px;
  position: relative;
}
.calendar-day.outside {
  background: #fafbfc;
  color: #b0b7c1;
}
.calendar-day.selected {
  background: #f2f5ff;
  box-shadow: inset 0 0 0 2px var(--brand);
}
.calendar-day.today .day-number {
  background: var(--brand);
  border-radius: 50%;
  color: #fff;
}
.day-number {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.meeting-dot {
  background: var(--brand);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 8px;
  margin-top: 4px;
  overflow: hidden;
  padding: 3px 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.summary-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
}
.summary-icon {
  align-items: center;
  border-radius: 9px;
  display: flex;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.summary-icon.blue {
  background: #eaf0ff;
  color: #4d69d5;
}
.summary-icon.amber {
  background: #fff1db;
  color: #c98325;
}
.summary-icon.green {
  background: #e5f6ee;
  color: #248c68;
}
.summary-icon.red {
  background: #ffeaec;
  color: #d4585e;
}
.summary-card strong,
.summary-card small {
  display: block;
}
.summary-card strong {
  font-size: 20px;
}
.summary-card small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}
thead th {
  background: #fafbfc !important;
  color: #8490a2 !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 13px 16px !important;
  text-transform: uppercase;
}
tbody td {
  font-size: 12px;
  padding: 15px 16px !important;
}
.meeting-title {
  display: block;
  font-weight: 600;
}
.meeting-description {
  color: var(--muted);
  display: block;
  font-size: 10px;
  margin-top: 4px;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.status-badge {
  border-radius: 12px;
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 8px;
}
.status-scheduled {
  background: #eaf0ff;
  color: #4865cc;
}
.status-completed {
  background: #e5f6ee;
  color: #238963;
}
.status-cancelled {
  background: #ffeaec;
  color: #cd5258;
}
.status-postponed {
  background: #fff1dc;
  color: #b87318;
}
.meeting-time {
  color: #344158;
  font-weight: 600;
  white-space: nowrap;
}
.invitee-names {
  color: #344158;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  max-width: 230px;
}
.rescheduled-note {
  color: #b87318;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.postpone-meeting-name {
  background: #f2f5ff;
  border: 1px solid #dfe5ff;
  border-radius: 8px;
  color: #405bc0;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
}
.invitee-count {
  color: #667286;
  font-size: 11px;
}
.empty-state {
  color: var(--muted);
  padding: 45px;
  text-align: center;
}
.empty-state strong,
.empty-state span {
  display: block;
}
.empty-state span {
  font-size: 11px;
  margin-top: 5px;
}
.toast-check {
  align-items: center;
  background: #e5f6ee;
  border-radius: 50%;
  color: #238963;
  display: flex;
  height: 22px;
  justify-content: center;
  margin-right: 8px;
  width: 22px;
}

@media (max-width: 767px) {
  .calendar-day {
    min-height: 56px;
    padding: 4px;
  }
  .meeting-dot {
    font-size: 0;
    height: 5px;
    padding: 0;
  }
  .date-chip {
    display: none;
  }
  .card-body,
  .card-header {
    padding: 1rem !important;
  }
}
.briefing-date {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: flex;
  gap: 10px;
  padding: 9px 13px;
}
.briefing-date span {
  color: var(--muted);
  font-size: 11px;
}
.briefing-date strong {
  font-size: 12px;
}
.ceo-metric {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-height: 84px;
  padding: 17px;
}
.ceo-metric .metric-icon {
  align-items: center;
  border-radius: 9px;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  height: 39px;
  justify-content: center;
  width: 39px;
}
.metric-icon.blue {
  background: #eaf0ff;
  color: #4d69d5;
}
.metric-icon.amber {
  background: #fff1dc;
  color: #c37c20;
}
.metric-icon.purple {
  background: #f0ebff;
  color: #7758bd;
}
.metric-icon.red {
  background: #ffeaec;
  color: #ce555b;
}
.metric-icon.green {
  background: #e5f6ee;
  color: #248b67;
}
.ceo-metric strong,
.ceo-metric small {
  display: block;
}
.ceo-metric strong {
  font-size: 22px;
}
.ceo-metric small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}
.ceo-timeline-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 75px 15px 1fr;
}
.ceo-time strong,
.ceo-time small {
  display: block;
}
.ceo-time strong {
  font-size: 11px;
}
.ceo-time small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
}
.timeline-marker {
  background: #cfd6e2;
  border-radius: 50%;
  height: 9px;
  margin-top: 5px;
  position: relative;
  width: 9px;
}
.timeline-marker:after {
  background: #e4e8ee;
  content: "";
  height: 76px;
  left: 4px;
  position: absolute;
  top: 10px;
  width: 1px;
}
.ceo-timeline-item:last-child .timeline-marker:after {
  display: none;
}
.timeline-marker.live {
  background: var(--primary);
  box-shadow: 0 0 0 4px #e9edff;
}
.ceo-meeting {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.ceo-meeting h3 {
  font-size: 13px;
  margin: 5px 0;
}
.ceo-meeting p {
  color: var(--muted);
  font-size: 10px;
  margin: 0;
}
.completion-wrap {
  display: grid;
  place-items: center;
  padding: 28px;
}
.completion-ring {
  --value: 0;
  align-content: center;
  background: conic-gradient(var(--primary) calc(var(--value) * 1%), #e8ecf2 0);
  border-radius: 50%;
  display: grid;
  height: 150px;
  place-items: center;
  position: relative;
  width: 150px;
}
.completion-ring:after {
  background: #fff;
  border-radius: 50%;
  content: "";
  inset: 15px;
  position: absolute;
}
.completion-ring strong,
.completion-ring small {
  z-index: 1;
}
.completion-ring strong {
  font-size: 25px;
  margin-top: 31px;
}
.completion-ring small {
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 31px;
}
.completion-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.completion-legend span {
  color: var(--muted);
  font-size: 10px;
}
.completion-legend i {
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 5px;
  width: 7px;
}
.decision-feed article {
  border-bottom: 1px solid #edf0f4;
  padding: 13px;
}
.decision-feed article:last-child {
  border: 0;
}
.decision-feed strong {
  font-size: 11px;
}
.decision-feed p {
  color: var(--muted);
  font-size: 9px;
  margin: 5px 0 0;
}
thead th {
  background: #fafbfc !important;
  color: #8490a2 !important;
  font-size: 9px;
  padding: 13px 16px !important;
  text-transform: uppercase;
}
tbody td {
  font-size: 11px;
  padding: 14px 16px !important;
}
@media (max-width: 767px) {
  .briefing-date {
    display: none;
  }
  .ceo-meeting {
    display: block;
  }
  .completion-ring {
    height: 125px;
    width: 125px;
  }
}
:root {
  --itnt-primary: #4f6de1;
  --itnt-primary-dark: #3e57c3;
  --itnt-primary-soft: #edf1ff;
  --itnt-ink: #20293a;
  --itnt-muted: #738095;
  --itnt-border: #e5e9f0;
  --itnt-page: #f5f7fa;
  --itnt-success: #258a66;
  --itnt-warning: #c47c20;
  --itnt-danger: #cf565c;
  --itnt-radius: 12px;
  --itnt-shadow: 0 5px 20px rgba(31, 42, 63, 0.055);
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--itnt-page);
  color: var(--itnt-ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--itnt-ink);
  letter-spacing: -0.018em;
}
.text-secondary {
  color: var(--itnt-muted) !important;
}
.app-nav,
.navbar {
  min-height: 70px;
}
.app-nav {
  box-shadow: 0 1px 0 var(--itnt-border);
}
.navbar-brand {
  color: var(--itnt-ink);
}
.navbar .btn {
  white-space: nowrap;
}
.nav-link {
  border-radius: 7px;
  color: #68758a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px !important;
}
.nav-link:hover,
.nav-link.active {
  background: var(--itnt-primary-soft);
  color: var(--itnt-primary) !important;
}
.btn {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  min-height: 36px;
}
.btn-sm {
  min-height: 32px;
}
.btn-primary {
  --bs-btn-bg: var(--itnt-primary);
  --bs-btn-border-color: var(--itnt-primary);
  --bs-btn-hover-bg: var(--itnt-primary-dark);
  --bs-btn-hover-border-color: var(--itnt-primary-dark);
}
.btn:focus-visible,
.form-control:focus,
.form-select:focus {
  border-color: #8b9dec;
  box-shadow: 0 0 0 0.2rem rgba(79, 109, 225, 0.13);
}
.card {
  border-color: var(--itnt-border) !important;
  border-radius: var(--itnt-radius);
  box-shadow: var(--itnt-shadow) !important;
}
.card-header {
  border-color: var(--itnt-border) !important;
}
.eyebrow,
.overline {
  color: #8792a4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}
.form-label {
  color: #4e5b70;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-control,
.form-select {
  border-color: #dbe1e9;
  border-radius: 8px;
  color: #293448;
  font-size: 14px;
  min-height: 41px;
}
.form-control::placeholder {
  color: #a2aab6;
}
.table {
  --bs-table-bg: transparent;
}
.table thead th {
  background: #fafbfc !important;
  border-bottom-color: var(--itnt-border);
  color: #7d899b !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.45px;
  padding: 13px 16px !important;
  text-transform: uppercase;
}
.table tbody td {
  border-bottom-color: #edf0f4;
  color: #344055;
  font-size: 13px;
  padding: 15px 16px !important;
}
.table-hover > tbody > tr:hover > * {
  --bs-table-bg-state: #f8f9fd;
}
.badge,
.status,
.status-badge {
  letter-spacing: 0.01em;
}
.empty,
.empty-state,
.detail-placeholder {
  color: var(--itnt-muted);
}
.demo-badge {
  align-items: center;
  background: #fff5dd;
  border: 1px solid #f1ddb1;
  border-radius: 12px;
  color: #a96b18;
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 5px;
  padding: 5px 8px;
  text-transform: uppercase;
}
.demo-badge::before {
  background: #e59a2a;
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}
.page-note {
  align-items: center;
  background: #eef2ff;
  border: 1px solid #dce4ff;
  border-radius: 10px;
  color: #566682;
  display: flex;
  font-size: 13px;
  gap: 10px;
  padding: 11px 14px;
}
.page-note strong {
  color: #405bc0;
}

/* Shared readability upgrades for role-specific components */
.metric small,
.ceo-metric small,
.summary-card small {
  font-size: 12px !important;
}
.metric strong,
.ceo-metric strong,
.summary-card strong {
  font-size: 24px !important;
}
.meeting-item h3,
.ceo-meeting h3,
.action-card h3 {
  font-size: 14px !important;
}
.meeting-item p,
.ceo-meeting p,
.action-source,
.meeting-description {
  font-size: 11px !important;
}
.workflow-step span {
  font-size: 11px !important;
}
.action-row strong {
  font-size: 13px !important;
}
.action-row small,
.owner-info strong,
.due-date {
  font-size: 11px !important;
}
.owner-info small {
  font-size: 10px !important;
}
.status,
.status-badge,
.priority {
  font-size: 10px !important;
}
.card-header p.small,
.card p.small {
  font-size: 13px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  main.container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .navbar .container-fluid {
    gap: 8px;
  }
  .navbar .d-flex.gap-2 {
    gap: 5px !important;
  }
  .navbar .d-flex.gap-2 .btn:not(.btn-primary) {
    display: none;
  }
  .card {
    border-radius: 10px;
  }
  .table thead th,
  .table tbody td {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
