/* ============================================================
   CI Portal — Dark Cinema Design System
   ============================================================ */

:root {
  --bg: #050506;
  --s1: #0d0d10;
  --s2: #14141a;
  --s3: #1c1c24;
  --s4: #24242e;
  --b1: rgba(255,255,255,0.06);
  --b2: rgba(255,255,255,0.10);
  --b3: rgba(255,255,255,0.16);
  --txt: #ededf0;
  --t2: #b8bac2;
  --t3: #8a8f98;
  --t4: #5c6068;
  --red: #BC252C;
  --red-hover: #d42a31;
  --red-deep: #8a1a20;
  --red-glow: rgba(188,37,44,0.35);
  --red-dim: rgba(188,37,44,0.10);
  --red-border: rgba(188,37,44,0.28);
  --grn: #27a356;
  --grn-light: #38d070;
  --grn-glow: rgba(39,163,86,0.28);
  --grn-dim: rgba(39,163,86,0.10);
  --amb: #e09838;
  --amb-light: #f2b358;
  --amb-glow: rgba(224,152,56,0.28);
  --blu: #3a7fd4;
  --blu-light: #60a0e0;
  --blu-glow: rgba(58,127,212,0.28);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --d-fast: 150ms;
  --d-med: 260ms;
  --d-slow: 400ms;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(0,0,0,0.4);
  --sh-md: 0 4px 12px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.4);
  --sh-lg: 0 12px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.35);
  --sh-glow-red: 0 0 0 1px var(--red-border), 0 6px 24px var(--red-glow);
  --sh-focus: 0 0 0 3px rgba(188,37,44,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
  background: var(--bg);
  color: var(--txt);
  letter-spacing: -0.005em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ambient-blob { animation: none !important; }
}

/* ── Ambient Background ── */
.ambient-bg {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background: radial-gradient(ellipse at 20% -20%, rgba(188,37,44,0.10) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 120%, rgba(58,127,212,0.06) 0%, transparent 50%),
              linear-gradient(180deg, #050506 0%, #08080c 100%);
}
.ambient-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; will-change: transform;
}
.ambient-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(188,37,44,0.22) 0%, transparent 70%);
  top: -200px; right: -140px;
  animation: blob-drift-1 24s var(--ease-cinema) infinite alternate;
}
.ambient-blob-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(58,127,212,0.16) 0%, transparent 70%);
  bottom: -180px; left: -100px;
  animation: blob-drift-2 28s var(--ease-cinema) infinite alternate;
}
.ambient-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
}
@keyframes blob-drift-1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-80px,60px) scale(1.1); } }
@keyframes blob-drift-2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(60px,-40px) scale(1.15); } }

main#app { position: relative; z-index: 1; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); background-clip: padding-box; }

/* ── Header ── */
.app-header {
  height: 58px; display: flex; align-items: center; padding: 0 20px; gap: 14px;
  background: rgba(13, 13, 16, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--b1);
}
.hdr-logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, var(--red-hover) 0%, var(--red) 55%, var(--red-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hdr-user { font-size: 12px; color: var(--t2); padding: 0 10px; font-weight: 500; }
.nav-btn {
  font-size: 12px; font-weight: 500; padding: 7px 13px; border-radius: var(--r-sm);
  border: 1px solid var(--b1); color: var(--t2); background: rgba(255,255,255,0.02);
  cursor: pointer; transition: all var(--d-fast) var(--ease-out); font-family: inherit;
}
.nav-btn:hover { color: var(--txt); background: var(--s3); border-color: var(--b2); }
.nav-btn-logout:hover { color: var(--red); border-color: var(--red-border); background: var(--red-dim); }

/* ── Portal Tiles ── */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}
@media (max-width: 768px) { .portal-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 30px 16px; } }
@media (max-width: 480px) { .portal-grid { grid-template-columns: 1fr; gap: 14px; padding: 24px 14px; } }

.portal-tile {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%), var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  cursor: pointer;
  transition: all var(--d-med) var(--ease-cinema);
  overflow: hidden;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.portal-tile::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.portal-tile:hover {
  border-color: var(--red-border);
  background: linear-gradient(180deg, rgba(188,37,44,0.04) 0%, transparent 100%), var(--s2);
  transform: translateY(-4px);
  box-shadow: var(--sh-glow-red);
}
.portal-tile:active { transform: translateY(-1px) scale(0.99); }

.tile-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: all var(--d-med) var(--ease-cinema);
}
.portal-tile:hover .tile-icon { transform: scale(1.08); }

.tile-icon-ops { background: linear-gradient(145deg, var(--red-hover), var(--red-deep)); box-shadow: 0 4px 16px var(--red-glow); }
.tile-icon-hours { background: linear-gradient(145deg, var(--blu-light), var(--blu)); box-shadow: 0 4px 16px var(--blu-glow); }
.tile-icon-proposals { background: linear-gradient(145deg, var(--amb-light), var(--amb)); box-shadow: 0 4px 16px var(--amb-glow); }
.tile-icon-products { background: linear-gradient(145deg, var(--grn-light), var(--grn)); box-shadow: 0 4px 16px var(--grn-glow); }
.tile-icon-about { background: linear-gradient(145deg, #a78bfa, #7c3aed); box-shadow: 0 4px 16px rgba(124,58,237,0.28); }

.tile-title { font-size: 16px; font-weight: 700; color: var(--txt); letter-spacing: -0.01em; }
.tile-desc { font-size: 12px; color: var(--t3); line-height: 1.5; }
.tile-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Inputs ── */
.ci-input {
  width: 100%; background: var(--s2); border: 1px solid var(--b1); border-radius: var(--r-sm);
  padding: 10px 12px; font-size: 14px; color: var(--txt); font-family: inherit;
  direction: rtl; transition: border-color var(--d-fast), box-shadow var(--d-fast);
}
.ci-input::placeholder { color: var(--t4); }
.ci-input:hover:not(:disabled) { border-color: var(--b2); }
.ci-input:focus { outline: none; border-color: var(--red); box-shadow: var(--sh-focus); }
.ci-input:disabled { opacity: 0.55; cursor: not-allowed; }
select.ci-input option { background: var(--s2); color: var(--txt); }
textarea.ci-input { resize: vertical; min-height: 76px; }

/* ── Buttons ── */
.btn-primary {
  width: 100%; padding: 12px 16px;
  background: linear-gradient(145deg, var(--red-hover) 0%, var(--red) 50%, var(--red-deep) 100%);
  color: #fff; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md);
  font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer;
  box-shadow: 0 4px 14px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all var(--d-fast) var(--ease-out);
}
.btn-primary:hover { box-shadow: 0 6px 20px var(--red-glow); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-sec {
  padding: 8px 14px; border-radius: var(--r-sm); font-size: 12px; font-weight: 500;
  font-family: inherit; cursor: pointer; transition: all var(--d-fast);
  border: 1px solid var(--b1); background: rgba(255,255,255,0.02); color: var(--t2);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-sec:hover { background: var(--s3); color: var(--txt); border-color: var(--b2); }

.btn-del {
  background: var(--red-dim); border: 1px solid var(--red-border); color: #e05858;
  padding: 5px 10px; font-size: 11px; border-radius: var(--r-sm); cursor: pointer; font-family: inherit;
}
.btn-del:hover { background: rgba(188,37,44,0.22); color: #ff6b6b; }

.btn-view {
  background: var(--blu-dim); border: 1px solid var(--blu-border); color: var(--blu-light);
  padding: 5px 10px; font-size: 11px; border-radius: var(--r-sm); cursor: pointer; font-family: inherit;
}
.btn-view:hover { background: rgba(58,127,212,0.22); color: #88c0ff; }

/* ── Cards ── */
.ci-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%), var(--s1);
  border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 18px; margin-bottom: 14px;
  box-shadow: var(--sh-md);
}

/* ── Table ── */
.ci-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ci-table thead th {
  padding: 10px 12px; text-align: right; font-size: 10px; font-weight: 700;
  color: var(--t3); text-transform: uppercase; letter-spacing: 0.6px;
  background: linear-gradient(180deg, var(--s2) 0%, var(--s1) 100%);
  border-bottom: 1px solid var(--b1); white-space: nowrap;
}
.ci-table tbody tr { border-bottom: 1px solid var(--b1); transition: background var(--d-fast); }
.ci-table tbody tr:last-child { border-bottom: none; }
.ci-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.ci-table td { padding: 10px 12px; vertical-align: middle; }

/* ── Pills ── */
.pill {
  display: inline-block; padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
}
.pill-r { background: var(--grn-dim); color: var(--grn-light); border: 1px solid rgba(39,163,86,0.28); }
.pill-ot { background: rgba(224,152,56,0.14); color: var(--amb-light); border: 1px solid rgba(224,152,56,0.28); }
.pill-we { background: rgba(188,37,44,0.14); color: #ef7070; border: 1px solid var(--red-border); }

/* ── Toast ── */
.toast-glass {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: rgba(13, 13, 16, 0.9); backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--b2); color: var(--txt); padding: 11px 18px 11px 14px;
  border-radius: var(--r-md); font-size: 13px; font-weight: 500; z-index: 9999;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--sh-lg);
  transition: transform var(--d-med) var(--ease-cinema), opacity var(--d-med);
  pointer-events: none; opacity: 0; max-width: 90vw;
}
.toast-glass.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-icon {
  width: 18px; height: 18px; border-radius: 50%; background: var(--grn);
  position: relative; flex-shrink: 0; box-shadow: 0 0 12px var(--grn-glow);
}
.toast-icon::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.toast-glass.toast-error .toast-icon { background: var(--red); box-shadow: 0 0 12px var(--red-glow); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  animation: fade-in 200ms ease both;
}
.modal-content {
  background: var(--s1); border: 1px solid var(--b2); border-radius: var(--r-xl);
  padding: 32px; max-width: 420px; width: 90%; box-shadow: var(--sh-lg);
  animation: scale-in 300ms var(--ease-cinema) both;
}

/* ── Page container ── */
.page-container {
  max-width: 900px; margin: 0 auto; padding: 30px 24px;
}
@media (max-width: 480px) { .page-container { padding: 20px 14px; } }

.page-title {
  font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.02em;
}
.page-subtitle { font-size: 13px; color: var(--t3); margin-bottom: 24px; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--t3); margin-bottom: 20px;
}
.breadcrumb a { color: var(--t2); text-decoration: none; cursor: pointer; }
.breadcrumb a:hover { color: var(--txt); }
.breadcrumb .sep { color: var(--t4); }

/* ── Animations ── */
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes scale-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.anim-fade-up { animation: fade-up 420ms var(--ease-cinema) both; }
.stagger > * { animation: fade-up 460ms var(--ease-cinema) both; }
.stagger > *:nth-child(1) { animation-delay: 0ms; }
.stagger > *:nth-child(2) { animation-delay: 50ms; }
.stagger > *:nth-child(3) { animation-delay: 100ms; }
.stagger > *:nth-child(4) { animation-delay: 150ms; }
.stagger > *:nth-child(5) { animation-delay: 200ms; }

/* ── Product Cards ── */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%), var(--s1);
  border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 20px;
  transition: all var(--d-med) var(--ease-out);
}
.product-card:hover { border-color: var(--b2); transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ── Stat Card (hours page) ── */
.stat-mini {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-md);
  padding: 14px 16px; text-align: center;
}
.stat-mini-val { font-size: 24px; font-weight: 700; font-variant-numeric: tabular-nums; }
.stat-mini-lbl { font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

/* ── Sub-tiles (proposals hub) ── */
.sub-tile-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 28px;
}
@media (max-width: 480px) { .sub-tile-grid { grid-template-columns: 1fr; } }

.sub-tile {
  background: var(--s1); border: 1px solid var(--b1); border-radius: var(--r-lg);
  padding: 20px; cursor: pointer; transition: all var(--d-med) var(--ease-out);
  display: flex; align-items: center; gap: 14px;
}
.sub-tile:hover { border-color: var(--b2); background: var(--s2); transform: translateX(-3px); }
.sub-tile-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .app-header { height: 54px; padding: 0 14px; gap: 10px; }
  .hdr-logo { width: 28px; height: 28px; }
}

/* ── Print ── */
@media print {
  .ambient-bg, header, .no-print { display: none !important; }
  body { background: #fff !important; }
}

/* Operations dashboard */
.ci-card-interactive {
  transition: border-color var(--d-fast), background var(--d-fast), transform var(--d-fast);
}
.ci-card-interactive:hover {
  border-color: var(--b2);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, transparent 100%), var(--s2);
  transform: translateY(-1px);
}
.event-actions { flex-wrap: wrap; justify-content: flex-end; }
.event-actions .btn-sec { white-space: nowrap; }
.event-dot { width: 9px; height: 9px; border-radius: 999px; flex-shrink: 0; }
.event-dot-open { background: var(--grn); box-shadow: 0 0 10px var(--grn-glow); }
.event-dot-closed { background: var(--t4); }
.event-chevron { transform: rotate(180deg); }
.stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.018) 0%, transparent 100%), var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--sh-md);
}

/* Proposal and invoice document preview */
.proposal-doc-root {
  direction: ltr;
  overflow-x: auto;
  padding-bottom: 28px;
}
.proposal-doc {
  direction: ltr;
  text-align: left;
  color: #1b1d22;
  background: #f4f1eb;
  width: min(100%, 840px);
  min-width: 720px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.42);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.24;
}
.pp-page {
  background: #fffdf8;
  min-height: 1040px;
  padding: 34px 38px;
  border: 1px solid rgba(0,0,0,0.08);
}
.pp-brand {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 2px solid #20232a;
}
.pp-brand-mark { display: flex; gap: 14px; align-items: center; }
.pp-brand-logo {
  width: 54px; height: 54px; border-radius: 10px;
  background: #bc252c; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  overflow: hidden;
}
.pp-logo-img img, .pp-client-logo img { width: 100%; height: 100%; object-fit: contain; }
.pp-brand-title { font-size: 22px; font-weight: 800; letter-spacing: 0; }
.pp-brand-sub, .pp-client-label, .pp-client-date { color: #5d6470; font-size: 12px; }
.pp-client-block { min-width: 250px; text-align: right; }
.pp-client-row { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.pp-client-name { color: #101216; font-size: 18px; font-weight: 800; }
.pp-client-logo {
  width: 48px; height: 48px;
  border: 1px solid #d8d3c8;
  border-radius: 8px;
  background: #faf8f2;
}
.pp-tables-top, .pp-bottom-row, .pp-standalone-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.pp-table-card, .pp-sf-card, .pp-disclaimers, .pp-note-red,
.pp-hourly-bank, .pp-package, .pp-hours-box, .pp-approval {
  border: 1px solid #d7d1c3;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  margin-bottom: 12px;
  position: relative;
}
.pp-thead, .pp-package-head, .pp-hours-head, .pp-approval-head, .pp-disclaimers-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #20232a;
  margin-bottom: 7px;
}
.pp-subhead, .pp-table-foot, .pp-sf-body, .pp-hourly-bank, .pp-approval-intro {
  font-size: 11px;
  color: #4f5662;
}
.pp-table, .pp-package-table, .pp-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.pp-table th, .pp-table td, .pp-package-table th, .pp-package-table td, .pp-hours-table td {
  border: 1px solid #ded8ca;
  padding: 6px 7px;
  vertical-align: top;
}
.pp-table th, .pp-package-table th { background: #f0eadf; color: #242832; font-weight: 800; }
.pp-disclaimers-list { padding-left: 18px; font-size: 10.5px; color: #30343b; }
.pp-disclaimers-list li { margin-bottom: 5px; }
.pp-note-red {
  border-color: rgba(188,37,44,0.32);
  background: #fff1f1;
  color: #9b1f25;
  font-weight: 800;
}
.pp-field {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 10px;
  margin-top: 8px;
  font-size: 11px;
}
.pp-field-line { border-bottom: 1px solid #a9a195; min-height: 18px; }
.pp-del, .pp-block-del {
  float: right;
  margin-left: 6px;
  border: 1px solid rgba(188,37,44,0.25);
  background: #fff4f4;
  color: #9b1f25;
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 10px;
  cursor: pointer;
}
.pp-readonly .pp-del, .pp-readonly .pp-block-del { display: none; }

@media (max-width: 980px) {
  .proposal-doc { min-width: 680px; }
  #pp-grid, #inv-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .grid-cols-resp-3 { grid-template-columns: 1fr !important; }
  .ci-card-interactive { align-items: flex-start; flex-wrap: wrap; }
  .event-actions { width: 100%; justify-content: flex-start; }
}
