@font-face {
  font-family: "Circular Eventic";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/CircularStd-Book.woff") format("woff");
}

@font-face {
  font-family: "Circular Eventic";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/CircularStd-Bold.woff") format("woff");
}

:root {
  --eventic-primary: #2563eb;
  --eventic-primary-dark: #1d4ed8;
  --eventic-accent: #ea580c;
  --eventic-teal: #0f766e;
  --eventic-ink: #111827;
  --eventic-ink-2: #334155;
  --eventic-muted: #64748b;
  --eventic-border: #e2e8f0;
  --eventic-bg: #f8fafc;
  --eventic-card: #ffffff;
  --eventic-soft: #f1f5f9;
  --eventic-radius: 8px;
  --eventic-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --eventic-shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.06);
}

html,
body {
  font-family: "Circular Eventic", Arial, Helvetica, sans-serif;
  color: var(--eventic-ink);
  letter-spacing: 0;
}

a,
button,
.btn,
[role="button"] {
  cursor: pointer;
}

.btn {
  align-items: center;
  border-radius: var(--eventic-radius);
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.eventic-access-tab:focus-visible {
  border-color: var(--eventic-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
  outline: 0;
}

.btn-primary,
.eventic-shell .btn-primary,
.eventic-staff-shell .btn-primary {
  background: var(--eventic-primary);
  border-color: var(--eventic-primary);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.eventic-shell .btn-primary:hover,
.eventic-staff-shell .btn-primary:hover {
  background: var(--eventic-primary-dark);
  border-color: var(--eventic-primary-dark);
  color: #ffffff;
}

.eventic-app-header.header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(16px);
}

.eventic-app-header .page-title-box h3 {
  color: var(--eventic-ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.eventic-admin-logo {
  align-items: center;
  display: flex;
  justify-content: center;
}

.eventic-admin-logo img {
  height: 36px;
  object-fit: contain;
  width: auto;
}

.eventic-user-chip {
  align-items: center;
  color: var(--eventic-ink-2);
  display: inline-flex;
  gap: 8px;
  font-weight: 700;
}

.eventic-user-chip i {
  align-items: center;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: var(--eventic-primary);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.top-nav-search form {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  height: 44px;
}

.top-nav-search form .form-control {
  background: transparent;
  color: var(--eventic-ink);
  font-weight: 700;
}

.top-nav-search form .btn {
  color: var(--eventic-muted);
}

.sidebar {
  background: #0f172a;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-menu ul li a {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 3px 10px;
  min-height: 42px;
  padding: 10px 12px;
}

.sidebar-menu ul li a i,
.sidebar-menu ul li a svg {
  align-items: center;
  display: inline-flex;
  flex: 0 0 18px;
  justify-content: center;
  width: 18px;
}

.sidebar-menu ul li a span {
  line-height: 1.2;
}

.content.container-fluid {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.035), transparent 240px),
    var(--eventic-bg);
}

.eventic-shell .card,
.eventic-card,
.eventic-kpi,
.eventic-staff-card,
.eventic-staff-hero,
.eventic-ticket-result-card,
.eventic-manual-scan {
  border-color: var(--eventic-border);
  border-radius: var(--eventic-radius);
  box-shadow: var(--eventic-shadow-sm);
}

.eventic-card,
.eventic-kpi,
.eventic-staff-card,
.eventic-staff-hero {
  background: rgba(255, 255, 255, 0.96);
}

.eventic-title,
.eventic-section-header h2,
.eventic-card-heading h2,
.eventic-event-name,
.eventic-staff-card h2 {
  letter-spacing: 0;
}

.eventic-eyebrow {
  color: var(--eventic-primary);
  font-weight: 700;
}

.eventic-subtitle,
.eventic-card-heading p,
.eventic-event-description,
.eventic-staff-card p {
  color: var(--eventic-muted);
}

.eventic-kpi::before {
  background: linear-gradient(180deg, var(--eventic-primary), var(--eventic-teal));
}

.eventic-kpi-icon {
  background: #eff6ff;
  border-color: #dbeafe;
  color: var(--eventic-primary);
}

.eventic-progress .progress-bar {
  background: linear-gradient(90deg, var(--eventic-primary), var(--eventic-teal));
}

.eventic-pill,
.eventic-event-meta span,
.eventic-event-stats span,
.eventic-staff-mini-stats span {
  background: #f8fafc;
  border-color: var(--eventic-border);
}

.eventic-login-page {
  background:
    radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(135deg, #f8fafc 0%, #eef4ff 46%, #ffffff 100%);
}

.eventic-login-page .account-content {
  padding: 32px 0;
}

.eventic-login-page .account-logo {
  display: none;
}

.eventic-login-panel {
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 420px;
  padding: 0 18px;
}

.eventic-login-hero,
.eventic-login-card {
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: var(--eventic-shadow);
}

.eventic-login-hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.88)),
    linear-gradient(180deg, #172554, #0f172a);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.eventic-login-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent),
    rgba(255, 255, 255, 0.06);
  content: "";
  height: 440px;
  position: absolute;
  right: -90px;
  top: 60px;
  transform: rotate(18deg);
  width: 220px;
}

.eventic-login-brand {
  position: relative;
  z-index: 1;
}

.eventic-login-brand img {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--eventic-radius);
  height: 48px;
  object-fit: contain;
  padding: 8px 10px;
  width: auto;
}

.eventic-login-hero > div:last-child {
  position: relative;
  z-index: 1;
}

.eventic-login-kicker,
.eventic-login-form-kicker {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.eventic-login-form-kicker {
  color: var(--eventic-primary);
}

.eventic-login-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
}

.eventic-login-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.eventic-login-proof span {
  align-items: center;
  border-color: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  gap: 8px;
  min-height: 54px;
}

.eventic-login-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.eventic-login-card .account-title {
  font-size: 30px;
  letter-spacing: 0;
}

.eventic-login-card .form-control,
.eventic-filter-card .form-control,
.eventic-filter-card .form-select,
.eventic-event-form .form-control,
.eventic-event-form .form-select {
  background: #ffffff;
  border-color: var(--eventic-border);
  border-radius: var(--eventic-radius);
  color: var(--eventic-ink);
  font-weight: 600;
}

.eventic-login-card .account-btn {
  background: linear-gradient(135deg, var(--eventic-primary), var(--eventic-primary-dark));
  border: 0;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.eventic-access-tabs {
  background: #f1f5f9;
  border-color: var(--eventic-border);
}

.eventic-access-tab.is-active {
  color: var(--eventic-primary);
}

.eventic-staff-page {
  background:
    linear-gradient(180deg, #eef4ff 0, #f8fafc 240px),
    var(--eventic-bg);
}

.eventic-staff-header {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--eventic-shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 991px) {
  .eventic-login-panel {
    grid-template-columns: 1fr;
  }

  .eventic-login-hero {
    min-height: 430px;
  }
}

@media (max-width: 575px) {
  .eventic-login-panel {
    padding: 0 8px;
  }

  .eventic-login-hero,
  .eventic-login-card {
    padding: 24px;
  }

  .eventic-login-hero h1 {
    font-size: 2.45rem;
  }
}

.eventic-shell {
  --eventic-primary: #2563eb;
  --eventic-accent: #16a34a;
  --eventic-ink: #111827;
  --eventic-muted: #6b7280;
  --eventic-border: #e5e7eb;
  --eventic-bg: #f6f8fb;
  --eventic-soft: #f8fafc;
  padding-bottom: 32px;
}

.content.container-fluid {
  background: var(--eventic-bg);
  min-height: calc(100vh - 60px);
  padding: 28px 30px 40px;
}

.page-header {
  margin: 0 0 22px;
}

.page-header .page-title {
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.breadcrumb {
  color: #667085;
  font-size: 13px;
}

.sidebar-menu .menu-title span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.sidebar-menu li a {
  min-height: 40px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.sidebar-menu li a.active,
.sidebar-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.eventic-shell .card,
.eventic-card {
  background: #ffffff;
  border: 1px solid var(--eventic-border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.eventic-pagebar {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.eventic-eyebrow {
  color: var(--eventic-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.eventic-title {
  color: var(--eventic-ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.eventic-subtitle {
  color: var(--eventic-muted);
  margin: 6px 0 0;
}

.eventic-kpi {
  align-items: center;
  background: #fff;
  border: 1px solid var(--eventic-border);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  height: 100%;
  justify-content: space-between;
  padding: 18px;
  min-width: 0;
}

.eventic-kpi > span {
  color: var(--eventic-muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.eventic-kpi-label {
  color: var(--eventic-muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.eventic-kpi-value {
  color: var(--eventic-ink);
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.eventic-kpi-note {
  color: var(--eventic-muted);
  font-size: 13px;
  margin-top: 8px;
}

.eventic-event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.eventic-event-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.eventic-event-thumb {
  padding: 14px 14px 0;
  position: relative;
}

.eventic-event-cover {
  aspect-ratio: 16 / 7;
  background: #eef2ff;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.eventic-event-cover-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(28, 99, 242, 0.16), rgba(14, 165, 164, 0.12)),
    #eef4ff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: #1e3a8a;
  display: flex;
  justify-content: center;
  min-height: 156px;
  padding: 20px;
}

.eventic-card .eventic-event-cover-placeholder span,
.eventic-event-cover-placeholder span {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16);
  display: inline-flex;
  font-size: 42px;
  font-weight: 800;
  height: 86px;
  justify-content: center;
  line-height: 1;
  width: 86px;
}

.eventic-event-status {
  position: absolute;
  right: 24px;
  top: 24px;
}

.eventic-event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}

.eventic-event-name {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.eventic-event-name a {
  color: #111827;
  text-decoration: none;
}

.eventic-event-name a:hover,
.eventic-event-name a:focus {
  color: #1c63f2;
}

.eventic-event-description {
  color: var(--eventic-muted);
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  min-height: 38px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.eventic-event-meta {
  color: #667085;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.eventic-event-meta span {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  min-height: 28px;
  padding: 6px 9px;
}

.eventic-event-meta span i,
.eventic-event-meta span svg,
.eventic-pill i,
.eventic-pill svg {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 1;
}

.eventic-event-progress {
  height: auto;
}

.eventic-event-progress .progress {
  height: 7px;
  margin-top: 6px;
}

.eventic-event-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eventic-event-stats span {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  color: #667085;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 800;
  gap: 3px;
  min-width: 0;
  padding: 9px;
  text-transform: uppercase;
}

.eventic-event-stats strong {
  color: #111827;
  font-size: 18px;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.eventic-event-actions {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) repeat(3, 44px);
  margin-top: auto;
}

.eventic-event-main-action {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 44px;
}

.eventic-icon-btn {
  align-items: center;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 0;
  width: 44px;
}

.eventic-icon-btn i,
.eventic-icon-btn svg,
.eventic-kpi-icon i,
.eventic-kpi-icon svg {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  height: 16px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  text-align: center;
  width: 16px;
}

.eventic-progress {
  height: 8px;
}

.eventic-pill {
  align-items: center;
  border: 1px solid var(--eventic-border);
  border-radius: 999px;
  color: var(--eventic-muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 6px;
  line-height: 1;
  padding: 8px 10px;
  white-space: nowrap;
}

.eventic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eventic-shell .btn-outline-primary,
.eventic-staff-shell .btn-outline-primary {
  border-color: #1c63f2;
  color: #1c63f2;
}

.eventic-shell .btn-outline-primary:hover,
.eventic-shell .btn-outline-primary:focus,
.eventic-staff-shell .btn-outline-primary:hover,
.eventic-staff-shell .btn-outline-primary:focus {
  background: #1c63f2;
  border-color: #1c63f2;
  color: #ffffff;
}

.eventic-shell .btn-outline-secondary,
.eventic-staff-shell .btn-outline-secondary {
  border-color: #98a2b3;
  color: #344054;
}

.eventic-shell .btn-outline-secondary:hover,
.eventic-shell .btn-outline-secondary:focus,
.eventic-staff-shell .btn-outline-secondary:hover,
.eventic-staff-shell .btn-outline-secondary:focus {
  background: #344054;
  border-color: #344054;
  color: #ffffff;
}

.eventic-actions .btn {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  line-height: 1.2;
  min-height: 42px;
  white-space: nowrap;
}

.eventic-shell .btn i,
.eventic-shell .btn svg,
.eventic-staff-shell .btn i,
.eventic-staff-shell .btn svg {
  align-self: center;
  display: inline-block;
  flex: 0 0 auto;
  height: 1em;
  line-height: 1;
  margin-right: 0;
  position: relative;
  top: 0;
  vertical-align: middle;
  width: 1em;
}

.eventic-shell .eventic-icon-btn i,
.eventic-shell .eventic-icon-btn svg,
.eventic-staff-shell .eventic-icon-btn i,
.eventic-staff-shell .eventic-icon-btn svg {
  margin-right: 0;
}

.eventic-table-wrap {
  background: #fff;
  border: 1px solid var(--eventic-border);
  border-radius: 8px;
  overflow-x: auto;
}

.eventic-table-wrap table {
  margin-bottom: 0;
}

.eventic-table-wrap th {
  color: #4b5563;
  font-size: 12px;
  padding: 14px 16px;
  text-transform: uppercase;
}

.eventic-table-wrap td {
  padding: 14px 16px;
  vertical-align: middle;
}

.eventic-ticket-delivery {
  align-items: center;
  color: #344054;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  white-space: nowrap;
}

.eventic-ticket-delivery + small {
  color: #667085;
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

.eventic-ticket-actions-cell {
  min-width: 320px;
  text-align: right;
}

.eventic-ticket-resend {
  align-items: center;
  display: inline-grid;
  gap: 8px;
  grid-template-columns: minmax(170px, 220px) auto;
  margin: 0 8px 0 0;
  vertical-align: middle;
}

.eventic-ticket-resend .form-group {
  margin: 0;
}

.eventic-ticket-resend .form-control {
  border-color: #d8dee9;
  border-radius: 8px;
  min-height: 34px;
}

.eventic-ticket-cancel {
  vertical-align: middle;
}

.eventic-ticket-cancelled {
  align-items: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #475569;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  padding: 8px 10px;
}

.eventic-ticket-profile {
  display: grid;
  gap: 16px;
}

.eventic-ticket-profile-head {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.eventic-ticket-profile-head span {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eventic-ticket-profile-head strong {
  color: #111827;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.eventic-ticket-profile-head .badge {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.eventic-ticket-image {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  display: block;
  width: 100%;
}

.eventic-audit-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eventic-audit-grid div,
.eventic-note {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  min-width: 0;
  padding: 12px;
}

.eventic-audit-grid span,
.eventic-note span {
  color: #667085;
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.eventic-audit-grid strong,
.eventic-note strong {
  color: #111827;
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.eventic-ticket-detail-actions {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.eventic-ticket-detail-actions .form-group {
  margin: 0;
}

.eventic-ticket-detail-actions .form-control {
  border-color: #d8dee9;
  border-radius: 8px;
  min-height: 44px;
}

.eventic-checkout-summary {
  display: grid;
  gap: 10px;
}

.eventic-checkout-summary div {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.eventic-checkout-summary span,
.eventic-checkout-submit span,
.eventic-checkout-index span {
  color: #667085;
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.eventic-checkout-summary strong,
.eventic-checkout-submit strong {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.eventic-template-actions {
  margin: -4px 0 14px;
}

.eventic-buyer-strip,
.eventic-register-entry {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  margin-bottom: 16px;
  padding: 14px;
}

.eventic-register-entry {
  margin-bottom: 0;
}

.eventic-buyer-strip strong,
.eventic-register-entry strong {
  color: #111827;
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.eventic-buyer-strip p,
.eventic-register-entry p {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 4px 0 0;
}

.eventic-buyer-strip .form-group {
  margin: 0;
}

.eventic-checkout-row {
  align-items: end;
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 74px minmax(180px, 1.1fr) minmax(210px, 1.1fr) minmax(108px, 0.5fr) minmax(128px, 0.58fr) 44px;
  margin-bottom: 10px;
  padding: 12px;
}

.eventic-checkout-row .form-group {
  margin: 0;
}

.eventic-checkout-index {
  align-items: center;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 64px;
  padding: 8px;
}

.eventic-checkout-index strong {
  color: #1d4ed8;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.eventic-icon-button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  color: #475569;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  width: 44px;
}

.eventic-icon-button:hover:not(:disabled),
.eventic-icon-button:focus-visible:not(:disabled) {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}

.eventic-icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.eventic-checkout-toolbar {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 12px;
}

.eventic-checkout-toolbar span {
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.eventic-checkout-submit {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px;
}

.eventic-cash-helper {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: 132px minmax(96px, auto);
}

.eventic-cash-helper .form-group {
  margin: 0;
}

.eventic-status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
  white-space: nowrap;
}

.eventic-status.is-active {
  background: #dcfce7;
  color: #166534;
}

.eventic-status.is-muted {
  background: #f1f5f9;
  color: #475569;
}

.eventic-scan-panel {
  background: #101827;
  border-radius: 8px;
  color: #fff;
  padding: 18px;
}

.eventic-scan-panel #qr-reader {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.eventic-empty {
  align-items: center;
  border: 1px dashed var(--eventic-border);
  border-radius: 8px;
  color: var(--eventic-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 84px;
  padding: 28px;
  text-align: center;
}

.eventic-empty strong {
  color: var(--eventic-ink);
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.eventic-section-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.eventic-section-header h2 {
  color: var(--eventic-ink);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.eventic-staff-page {
  min-height: 100vh;
  background: #eef3f9;
}

.eventic-staff-shell {
  width: min(760px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px;
}

.eventic-staff-header {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.eventic-staff-header span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eventic-staff-header strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
}

.eventic-staff-hero {
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--eventic-border);
}

.eventic-staff-hero h1 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 850;
  letter-spacing: 0;
}

.eventic-staff-hero p {
  margin: 0;
  color: var(--eventic-muted);
}

.eventic-staff-list {
  display: grid;
  gap: 14px;
}

.eventic-staff-card {
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--eventic-border);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
}

.eventic-staff-card h2 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.eventic-staff-card p {
  margin: 0 0 14px;
  color: var(--eventic-muted);
}

.eventic-staff-event-card {
  display: grid;
  gap: 14px;
}

.eventic-staff-event-head {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.eventic-staff-event-head h2 {
  margin-bottom: 6px;
}

.eventic-staff-event-head p {
  margin-bottom: 0;
}

.eventic-staff-mini-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eventic-staff-mini-stats span {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  color: #667085;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 800;
  gap: 3px;
  line-height: 1.2;
  min-width: 0;
  padding: 10px;
  text-transform: uppercase;
}

.eventic-staff-mini-stats strong {
  color: #111827;
  font-size: 20px;
  line-height: 1;
  text-transform: none;
}

.eventic-staff-card-progress .progress {
  height: 8px;
  margin-top: 6px;
}

.eventic-staff-primary-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.eventic-scan-shell {
  display: grid;
  gap: 14px;
}

.eventic-scan-result {
  align-items: center;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 18px;
}

.eventic-scan-result-icon {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 26px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.eventic-scan-result span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.eventic-scan-result strong {
  display: block;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.eventic-scan-result p {
  font-size: 14px;
  line-height: 1.45;
  margin: 7px 0 0;
}

.eventic-scan-result.is-ready,
.eventic-scan-result.is-loading,
.eventic-scan-result.is-hold {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.eventic-scan-result.is-ready .eventic-scan-result-icon,
.eventic-scan-result.is-loading .eventic-scan-result-icon,
.eventic-scan-result.is-hold .eventic-scan-result-icon {
  background: #dbeafe;
}

.eventic-scan-result.is-valid {
  background: #dcfce7;
  border-color: #86efac;
  color: #14532d;
}

.eventic-scan-result.is-valid .eventic-scan-result-icon {
  background: #bbf7d0;
}

.eventic-scan-result.is-duplicate {
  background: #fffbeb;
  border-color: #facc15;
  color: #854d0e;
}

.eventic-scan-result.is-duplicate .eventic-scan-result-icon {
  background: #fef3c7;
}

.eventic-scan-result.is-invalid,
.eventic-scan-result.is-wrong {
  background: #fff1f2;
  border-color: #fda4af;
  color: #9f1239;
}

.eventic-scan-result.is-invalid .eventic-scan-result-icon,
.eventic-scan-result.is-wrong .eventic-scan-result-icon {
  background: #ffe4e6;
}

.eventic-scan-stats {
  margin: 0;
}

.eventic-scanner-frame {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
}

.eventic-scanner-toolbar {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-bottom: 10px;
}

.eventic-scanner-toolbar .btn,
.eventic-scanner-toolbar .form-select {
  min-height: 44px;
}

.eventic-scanner-frame #qr-reader {
  border: 0 !important;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.08)),
    #f8fafc;
  border-radius: 8px;
  min-height: 320px;
}

.eventic-camera-help {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 0;
}

.eventic-scanner-frame #qr-reader video {
  border-radius: 8px;
}

.eventic-scanner-frame #qr-reader__scan_region {
  background: #f8fafc;
}

.eventic-scanner-frame #qr-reader__dashboard_section_csr button,
.eventic-scanner-frame #qr-reader__dashboard button {
  background: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
  min-height: 42px;
  padding: 8px 12px;
}

.eventic-scanner-frame #qr-reader__dashboard_section_csr select {
  border: 1px solid #d8dee9;
  border-radius: 8px;
  min-height: 42px;
}

.eventic-scanner-frame #qr-reader__scan_region img {
  display: none;
}

.eventic-ticket-result-card,
.eventic-manual-scan {
  background: #ffffff;
  border: 1px solid var(--eventic-border);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.08);
  padding: 16px;
}

.eventic-ticket-result-card {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.eventic-ticket-result-card div {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  min-width: 0;
  padding: 10px;
}

.eventic-ticket-result-card span,
.eventic-manual-scan label {
  color: #667085;
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.eventic-ticket-result-card strong {
  color: #111827;
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.eventic-manual-scan .form-control {
  border-color: #d8dee9;
  border-radius: 8px 0 0 8px;
  min-height: 46px;
}

.eventic-manual-scan .btn {
  border-radius: 0 8px 8px 0;
  font-weight: 800;
}

.eventic-role-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.eventic-role-grid div {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  padding: 12px;
}

.eventic-role-grid strong,
.eventic-role-grid span {
  display: block;
}

.eventic-role-grid strong {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 6px;
}

.eventic-role-grid span {
  color: #667085;
  font-size: 12px;
  line-height: 1.4;
}

.eventic-staff-matrix {
  display: grid;
  gap: 12px;
}

.eventic-staff-assignment {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.eventic-staff-assignment-head,
.eventic-staff-assignment-grid {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.eventic-staff-assignment-head strong {
  color: #111827;
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.eventic-staff-assignment-head span {
  color: #667085;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}

.eventic-staff-assignment-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.7fr) auto;
}

.eventic-staff-assignment .form-label {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}

.eventic-staff-assignment .form-control,
.eventic-staff-assignment .form-select {
  border-color: #d8dee9;
  border-radius: 8px;
  min-height: 44px;
}

.eventic-switch,
.eventic-permission-chip {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.eventic-switch input,
.eventic-permission-chip input {
  accent-color: #2563eb;
  height: 17px;
  width: 17px;
}

.eventic-switch span {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.eventic-permission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eventic-permission-chip {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 999px;
  min-height: 36px;
  padding: 8px 10px;
}

.eventic-permission-chip span {
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.eventic-permission-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.eventic-permission-summary span {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #1e40af;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 8px;
}

@media (max-width: 767px) {
  .eventic-pagebar {
    display: block;
  }

  .eventic-pagebar .eventic-actions {
    margin-top: 14px;
  }

  .eventic-title {
    font-size: 22px;
  }

  .eventic-event-grid {
    grid-template-columns: 1fr;
  }

  .eventic-filter-grid {
    grid-template-columns: 1fr;
  }

  .eventic-kpi-value {
    font-size: 24px;
  }

  .eventic-kpi {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .eventic-kpi-value {
    text-align: left;
  }

  .eventic-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .eventic-pagebar .eventic-actions .btn {
    flex-basis: calc(50% - 4px);
  }

  .eventic-pagebar .eventic-actions .btn:first-child {
    flex-basis: 100%;
  }

  .eventic-event-cover-placeholder {
    min-height: 124px;
  }

  .eventic-card .eventic-event-cover-placeholder span,
  .eventic-event-cover-placeholder span {
    font-size: 30px;
    height: 64px;
    width: 64px;
  }

  .content.container-fluid {
    padding: 20px 16px;
  }

  .eventic-section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.eventic-login-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, #0f172a 0%, #162033 50%, #f7f9fc 50.2%, #eef3f9 100%);
}

.eventic-login-page .account-content {
  min-height: 100vh;
  padding: 36px 0;
  display: flex;
  align-items: center;
}

.eventic-login-page .account-logo {
  margin-bottom: 22px;
}

.eventic-login-panel {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
  align-items: stretch;
}

.eventic-login-panel-compact {
  width: min(940px, 100%);
  grid-template-columns: minmax(0, 0.9fr) 420px;
}

.eventic-login-hero,
.eventic-login-card {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.eventic-login-hero {
  min-height: 520px;
  padding: 38px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(29, 78, 216, 0.84));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eventic-login-brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eventic-login-kicker {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eventic-login-hero h1 {
  max-width: 560px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.eventic-login-hero p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.eventic-login-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.eventic-login-proof span {
  display: block;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.eventic-login-card {
  background: #ffffff;
  padding: 34px;
  display: flex;
  align-items: center;
}

.eventic-access-tabs {
  background: #eef3f9;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 24px;
  padding: 4px;
}

.eventic-access-tab {
  align-items: center;
  border-radius: 6px;
  color: #475569;
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.eventic-access-tab.is-active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.eventic-link {
  color: #1c63f2;
  font-weight: 800;
  text-decoration: none;
}

.eventic-login-card .account-box,
.eventic-login-card .account-wrapper {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.eventic-login-card .account-title {
  margin-bottom: 8px;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

.eventic-login-card .account-subtitle {
  margin-bottom: 24px;
  color: #667085;
  text-align: left;
}

.eventic-login-card .form-control {
  min-height: 46px;
  border-color: #d8dee9;
  border-radius: 8px;
}

.eventic-login-card .form-label {
  color: #344054;
  font-weight: 700;
}

.eventic-login-card .account-btn {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  background: #1c63f2;
  border-color: #1c63f2;
}

.eventic-login-card .account-footer {
  margin-top: 20px;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 991px) {
  .eventic-login-panel {
    grid-template-columns: 1fr;
  }

  .eventic-login-hero {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .eventic-login-page .account-content {
    padding: 18px 0;
  }

  .eventic-login-hero,
  .eventic-login-card {
    padding: 24px;
  }

  .eventic-login-proof {
    grid-template-columns: 1fr;
  }
}

/* Eventic product polish */
.eventic-card {
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.eventic-kpi {
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.eventic-kpi::before {
  background: linear-gradient(180deg, #2563eb, #14b8a6);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 4px;
}

.eventic-kpi-icon {
  align-items: center;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #1d4ed8;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 16px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  margin-left: 2px;
  position: relative;
  width: 42px;
}

.eventic-kpi-icon i,
.eventic-kpi-icon svg {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.eventic-kpi-copy {
  min-width: 0;
  width: 100%;
}

.eventic-kpi-copy > span {
  color: var(--eventic-muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.eventic-kpi-copy .eventic-kpi-value {
  text-align: left;
}

.eventic-dashboard-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.eventic-progress {
  height: auto;
}

.eventic-progress .progress {
  background: #e8edf4;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.eventic-progress .progress-bar {
  background: linear-gradient(90deg, #2563eb, #14b8a6);
}

.eventic-filter-card {
  padding: 18px;
}

.eventic-filter-grid {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 390px) 96px;
}

.eventic-filter-grid .form-group {
  margin: 0;
}

.eventic-filter-grid .btn {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  height: 44px;
  justify-content: center;
  padding-left: 14px;
  padding-right: 14px;
}

.eventic-filter-card .form-label,
.eventic-event-form .form-label {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

.eventic-filter-card .form-control,
.eventic-filter-card .form-select,
.eventic-event-form .form-control,
.eventic-event-form .form-select {
  border-color: #d8dee9;
  border-radius: 8px;
  color: #111827;
  min-height: 44px;
}

.eventic-filter-card .form-control:focus,
.eventic-filter-card .form-select:focus,
.eventic-event-form .form-control:focus,
.eventic-event-form .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.14);
}

.eventic-shell .badge,
.eventic-staff-shell .badge {
  align-items: center;
  display: inline-flex;
  gap: 5px;
  line-height: 1;
  min-height: 24px;
  padding: 6px 9px;
  vertical-align: middle;
}

.eventic-shell .badge i,
.eventic-shell .badge svg,
.eventic-staff-shell .badge i,
.eventic-staff-shell .badge svg {
  display: block;
  flex: 0 0 auto;
  height: 1em;
  line-height: 1;
  margin: 0;
  width: 1em;
}

.eventic-event-form textarea.form-control {
  min-height: 118px;
}

.eventic-event-form input[type="color"].form-control {
  padding: 5px;
}

.eventic-event-form .form-text {
  color: #667085;
  font-size: 12px;
}

.eventic-card-heading {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.eventic-card-heading h2 {
  color: var(--eventic-ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

.eventic-card-heading p {
  color: var(--eventic-muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 6px 0 0;
}

.eventic-detail-card {
  padding: 16px;
}

.eventic-detail-cover {
  aspect-ratio: 16 / 7;
  background: #eef2ff;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.eventic-detail-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eventic-detail-meta div,
.eventic-config-list div {
  background: var(--eventic-soft);
  border: 1px solid #edf2f7;
  border-radius: 8px;
  min-width: 0;
  padding: 12px;
}

.eventic-detail-meta span,
.eventic-config-list span {
  color: #667085;
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.eventic-detail-meta strong,
.eventic-config-list strong {
  align-items: center;
  color: #111827;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  line-height: 1.25;
  min-width: 0;
}

.eventic-config-list {
  display: grid;
  gap: 10px;
}

.eventic-config-list i {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}

.eventic-ticket-preview {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

.eventic-ticket-preview img {
  border-radius: 6px;
  max-height: 720px;
  object-fit: contain;
  width: auto;
}

.eventic-activity-item strong {
  color: #111827;
  display: block;
  font-size: 13px;
  line-height: 1.3;
}

.eventic-alert {
  align-items: center;
  border: 1px solid #d8dee9;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 0 18px;
  padding: 14px 16px;
}

.eventic-alert.success {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.eventic-alert.error {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}

.eventic-alert.warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.eventic-alert.info,
.eventic-alert.message:not(.success):not(.error):not(.warning) {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.eventic-alert button {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  color: inherit;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 18px;
  height: 28px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 28px;
}

.eventic-login-proof span {
  font-weight: 800;
}

.eventic-login-proof i {
  margin-right: 7px;
}

@media (max-width: 767px) {
  .eventic-kpi {
    align-items: center;
    flex-direction: row;
  }

  .eventic-detail-meta {
    grid-template-columns: 1fr;
  }

  .eventic-card-heading {
    display: block;
  }

  .eventic-card-heading .btn {
    margin-top: 12px;
    width: 100%;
  }

  .eventic-scan-result,
  .eventic-ticket-result-card {
    grid-template-columns: 1fr;
  }

  .eventic-scan-result-icon {
    height: 52px;
    width: 52px;
  }

  .eventic-ticket-result-card {
    gap: 8px;
  }

  .eventic-manual-scan .input-group {
    display: grid;
    gap: 8px;
  }

  .eventic-manual-scan .form-control,
  .eventic-manual-scan .btn {
    border-radius: 8px;
    width: 100%;
  }

  .eventic-scanner-toolbar {
    grid-template-columns: 1fr;
  }

  .eventic-scanner-toolbar .btn {
    width: 100%;
  }

  .eventic-staff-assignment-head,
  .eventic-staff-assignment-grid {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .eventic-switch {
    justify-content: space-between;
  }

  .eventic-permission-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .eventic-permission-chip {
    border-radius: 8px;
    justify-content: space-between;
  }

  .eventic-ticket-actions-cell {
    min-width: 260px;
  }

  .eventic-ticket-resend,
  .eventic-ticket-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-right: 0;
  }

  .eventic-ticket-resend .btn,
  .eventic-ticket-detail-actions .btn {
    width: 100%;
  }

  .eventic-checkout-row {
    grid-template-columns: 1fr;
  }

  .eventic-buyer-strip,
  .eventic-register-entry {
    grid-template-columns: 1fr;
  }

  .eventic-checkout-index {
    align-items: flex-start;
    min-height: auto;
  }

  .eventic-checkout-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .eventic-checkout-submit .btn {
    width: 100%;
  }

  .eventic-cash-helper {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .eventic-audit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eventic-filter-grid {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) 96px;
  }

  .eventic-checkout-row {
    grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr);
  }

  .eventic-checkout-row .eventic-remove-ticket {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 575px) {
  .eventic-audit-grid {
    grid-template-columns: 1fr;
  }
}

/* Eventic 2026 visual system */
.eventic-shell,
.eventic-staff-shell,
.eventic-login-page {
  --eventic-primary: #2563eb;
  --eventic-primary-dark: #1d4ed8;
  --eventic-accent: #ea580c;
  --eventic-teal: #0f766e;
  --eventic-ink: #111827;
  --eventic-muted: #64748b;
  --eventic-border: #e2e8f0;
  --eventic-bg: #f8fafc;
  --eventic-soft: #f1f5f9;
}

.eventic-alert {
  animation: eventicToastIn 220ms ease both;
  position: relative;
}

.eventic-alert.is-dismissed,
.eventic-alert.hidden {
  display: none;
}

.eventic-alert span {
  font-weight: 700;
  line-height: 1.45;
}

.btn.is-pressing,
.eventic-icon-btn.is-pressing,
.eventic-icon-button.is-pressing {
  transform: translateY(0) scale(0.985);
}

.eventic-app-header + .sidebar {
  padding-top: 10px;
}

.header-left,
.eventic-app-header .header-left {
  background: #ffffff;
  border-right: 1px solid var(--eventic-border);
}

.eventic-app-header #toggle_btn {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--eventic-border);
  border-radius: 8px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  margin-left: 10px;
  width: 38px;
}

.eventic-app-header #toggle_btn .bar-icon span {
  background-color: var(--eventic-ink-2);
}

.sidebar-menu .menu-title {
  margin: 18px 12px 8px;
  padding: 0;
}

.sidebar-menu .menu-title span {
  color: #94a3b8;
  font-size: 11px;
  letter-spacing: 0;
}

.sidebar-menu ul li a {
  color: #cbd5e1;
  font-weight: 700;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a.active {
  background: rgba(37, 99, 235, 0.18);
  color: #ffffff;
}

.sidebar-menu ul li a:hover i,
.sidebar-menu ul li a.active i {
  color: #93c5fd;
}

.page-wrapper {
  background: var(--eventic-bg);
}

.eventic-app-header .dropdown-menu {
  border: 1px solid var(--eventic-border);
  border-radius: var(--eventic-radius);
  box-shadow: var(--eventic-shadow-sm);
}

.eventic-event-card,
.eventic-card,
.eventic-kpi {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.eventic-event-card:hover,
.eventic-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--eventic-shadow);
}

.eventic-event-card:hover {
  transform: translateY(-2px);
}

.eventic-login-card .checkbox label,
.eventic-login-card .form-check-label {
  color: var(--eventic-ink-2);
  font-weight: 700;
}

.eventic-staff-shell {
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  padding-top: calc(18px + env(safe-area-inset-top));
}

.eventic-auth-wrapper,
.eventic-admin-wrapper {
  background: transparent;
}

.eventic-admin-page {
  background: var(--eventic-bg);
}

.eventic-legacy-page-header {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--eventic-border);
  border-radius: var(--eventic-radius);
  box-shadow: var(--eventic-shadow-sm);
  margin-bottom: 18px;
  padding: 16px 18px;
}

.eventic-legacy-page-header .page-title {
  margin: 0 0 6px;
}

.eventic-staff-brand {
  align-items: center;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 40px minmax(0, 1fr);
}

.eventic-staff-brand img {
  background: #ffffff;
  border-radius: 8px;
  grid-row: 1 / span 2;
  height: 40px;
  object-fit: contain;
  padding: 6px;
  width: 40px;
}

.eventic-staff-brand span,
.eventic-staff-brand strong {
  min-width: 0;
}

.eventic-admin-page .header.eventic-app-header {
  background: rgba(255, 255, 255, 0.96) !important;
  background-image: none !important;
  color: var(--eventic-ink);
}

.eventic-admin-page .header.eventic-app-header::before,
.eventic-admin-page .header.eventic-app-header::after {
  display: none !important;
}

.eventic-admin-page .header.eventic-app-header .page-title-box,
.eventic-admin-page .header.eventic-app-header .nav.user-menu,
.eventic-admin-page .header.eventic-app-header .top-nav-search,
.eventic-admin-page .header.eventic-app-header .top-nav-search form {
  background: transparent !important;
  background-image: none !important;
}

.eventic-admin-page .header.eventic-app-header .top-nav-search form {
  background-color: #f8fafc !important;
}

.eventic-admin-page .header.eventic-app-header .nav-link,
.eventic-admin-page .header.eventic-app-header a {
  color: var(--eventic-ink-2);
}

.eventic-admin-page .page-wrapper > .content {
  padding-top: 28px;
}

@keyframes eventicToastIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
