@charset "UTF-8";
:root {
  --primary-color: #6c5ce7;
  --primary-dark: #5f4d9f;
  --success-color: #00b894;
  --danger-color: #d63031;
  --warning-color: #fdcb6e;
  --info-color: #0984e3;
  --dark-color: #2d3436;
  --light-color: #f5f6fa;
  --border-color: #dfe6e9;
  --text-color: #2d3436;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #f5f6fa;
  color: #2d3436;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 1.5rem;
  color: #1e1e2e;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

a {
  color: #6c5ce7;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #5f4d9f;
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
}

.navbar {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 20px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  height: 60px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
}
.navbar-logo:hover {
  opacity: 0.85 !important;
  background: none !important;
}
.navbar-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.navbar-role {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #51c0a7;
  background: rgba(81, 192, 167, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1;
}

.navbar ul {
  display: inline-flex;
  list-style: none;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar a {
  color: #a6adc8;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
}
.navbar a:hover {
  color: #cba6f7;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: none;
  opacity: 1;
}
.navbar a.active {
  color: #fff;
  background: rgba(108, 92, 231, 0.3);
  border-bottom: none;
  opacity: 1;
}
.navbar .nav-sep {
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar .nav-sep a {
  color: #7f849c;
}
.navbar .nav-sep a:hover {
  color: #f38ba8;
  background: rgba(243, 139, 168, 0.08);
}

.navbar-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 110;
}
.navbar-burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a6adc8;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.navbar-burger span:nth-child(1) {
  top: 2px;
}
.navbar-burger span:nth-child(2) {
  top: 11px;
}
.navbar-burger span:nth-child(3) {
  top: 20px;
}
.navbar-burger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar .container {
    height: 52px;
  }
  .navbar .navbar-logo img {
    height: 18px;
  }
  .navbar .navbar-role {
    font-size: 0.55rem;
    padding: 2px 6px;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 8px 0;
    background: #1e1e2e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .navbar ul.is-open {
    display: flex;
  }
  .navbar ul li {
    width: 100%;
  }
  .navbar ul a {
    display: block;
    padding: 10px 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .navbar ul a:hover, .navbar ul a.active {
    background: rgba(108, 92, 231, 0.15);
  }
  .navbar ul .nav-sep {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4px;
    margin-top: 4px;
  }
  .navbar-burger {
    display: block;
  }
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.admin-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: calc(100vh - 60px);
  background-color: #f5f6fa;
}
@media (max-width: 768px) {
  .admin-container {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar {
  background: #181825;
  color: #cdd6f4;
  padding: 1.5rem;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.04);
}
.admin-sidebar .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-sidebar a {
  display: block;
  padding: 10px 14px;
  color: #a6adc8;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 3px;
  transition: color 0.2s, background 0.2s;
  border-left: 3px solid transparent;
  font-size: 0.88rem;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  background-color: rgba(108, 92, 231, 0.18);
  color: #fff;
  border-left-color: #cba6f7;
}
@media (max-width: 768px) {
  .admin-sidebar {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    overflow-x: auto;
    border-bottom: 1px solid #dfe6e9;
  }
  .admin-sidebar .menu {
    display: flex;
    gap: 1rem;
  }
  .admin-sidebar a {
    margin-bottom: 0;
    white-space: nowrap;
  }
}

.admin-main {
  padding: 3rem;
  min-width: 0;
}
@media (max-width: 768px) {
  .admin-main {
    padding: 2rem;
  }
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.admin-header h2 {
  color: #2d3436;
  margin: 0;
}
@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.table-container {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-container table thead {
  background-color: #f5f6fa;
}
.table-container table th {
  font-weight: 700;
  color: #2d3436;
  padding: 15px 10px;
  text-align: left;
  border-bottom: 2px solid #dfe6e9;
}
.table-container table td {
  padding: 15px 10px;
  border-bottom: 1px solid #dfe6e9;
}
.table-container table tr:hover {
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .table-container table {
    width: 100%;
  }
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}

.analytics-section {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.analytics-section h3 {
  color: #6c5ce7;
  margin-bottom: 2rem;
}

.analytics-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .analytics-stats {
    grid-template-columns: 1fr;
  }
}
.analytics-stats .stat {
  background-color: #f5f6fa;
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.analytics-stats .stat h4 {
  font-size: 12px;
  color: #7f8c8d;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  margin: 0;
}
.analytics-stats .stat .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #6c5ce7;
  margin: 1rem 0 0 0;
}
.analytics-stats .stat .stat-subtitle {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 4px;
}

.location-list {
  max-height: 300px;
  overflow-y: auto;
}
.location-list .location-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dfe6e9;
  font-size: 14px;
}
.location-list .location-item:hover {
  background-color: #f5f6fa;
}
.location-list .location-item .count {
  background-color: #6c5ce7;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
}

.venue-map {
  max-height: 600px;
  overflow-y: auto;
}

.event-map {
  --seat-size: 25px;
}
.event-map .stage {
  font-size: 12px;
  padding: 10px;
}
.event-map .seat {
  font-size: 9px;
}

.seat-map-preview {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  font-family: "Courier New", monospace;
  font-size: 12px;
  overflow-x: auto;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .seat-map-preview {
    max-width: 100% !important;
  }
}

.chart-container {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f5f6fa;
  border-radius: 4px;
}
.chart-container h4 {
  margin-bottom: 2rem;
  color: #2d3436;
  margin-top: 0;
}

.event-description {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #636e72;
  line-height: 1.6;
}

.occurrences-section {
  margin-top: 2rem;
}
.occurrences-section h3 {
  color: #6c5ce7;
  margin-bottom: 1.5rem;
}
.occurrences-section h4 {
  color: #6c5ce7;
  margin-bottom: 1.5rem;
}
.occurrences-section .occurrences-list {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #6c5ce7;
}
.occurrences-section .occurrences-list .occurrence-item {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #ffffff;
  border-radius: 4px;
  border-left: 3px solid #6c5ce7;
  padding-left: 1.5rem;
}
.occurrences-section .occurrences-list .occurrence-item .occurrence-date {
  font-weight: 700;
  color: #2d3436;
}
.occurrences-section .occurrences-list .occurrence-item .occurrence-capacity {
  color: #666;
  font-size: 12px;
  margin-top: 4px;
}
.occurrences-section .occurrences-list .empty-message {
  color: #666;
  margin: 0;
  padding: 1rem 0;
}
.occurrences-section .occurrences-list .error-message {
  color: #d63031;
  margin: 0;
  padding: 1rem 0;
}

.zone-legend {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 4px;
}
.zone-legend .zone-title {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}
.zone-legend .zone-empty {
  color: #666;
  margin: 0;
}
.zone-legend .zone-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 12px;
}
.zone-legend .zone-item .zone-color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}
.zone-legend .zone-item .zone-color.zone-aisle {
  border-radius: 4px;
  border: 2px dashed #ccc;
  background: transparent !important;
}
.zone-legend .zone-item span strong {
  font-weight: 700;
}

.event-details {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f5f6fa;
  border-radius: 4px;
}

.event-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.event-map-container {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f5f6fa;
  border-radius: 8px;
}
.event-map-container h3 {
  color: #6c5ce7;
  margin-bottom: 2rem;
}

.status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.status.active, .status.completed, .status.confirmed {
  background: #d4edda;
  color: #155724;
}
.status.pending {
  background: #fff3cd;
  color: #856404;
}
.status.cancelled {
  background: #f8d7da;
  color: #721c24;
}
.status.draft {
  background: #e0e0e0;
  color: #333;
}
.status.published {
  background: #d4edda;
  color: #155724;
}
.status.held {
  background: #fff3e0;
  color: #f57c00;
}
.status.admin {
  background: #e3f2fd;
  color: #1976d2;
}
.status.organizer {
  background: #f3e5f5;
  color: #7b1fa2;
}
.status.customer {
  background: #e8f5e9;
  color: #388e3c;
}

.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.status-confirmed {
  background: #d4edda;
  color: #155724;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.payment-cash {
  background: #e8f5e9;
  color: #2e7d32;
}

.payment-online {
  background: #e3f2fd;
  color: #1565c0;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.toggle-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #00b894;
}
input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

.bookings-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bookings-table {
  background: #ffffff;
  border-radius: 8px;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.bookings-table table {
  width: 100%;
  border-collapse: collapse;
}
.bookings-table th {
  background: #f5f6fa;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}
.bookings-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}
.bookings-table tr:hover {
  background: #f9f9f9;
  cursor: pointer;
}
.bookings-table tr:hover td:last-child {
  cursor: default;
}

.nav-tabs {
  border: none !important;
}

.nav-link {
  color: #666 !important;
  border: none !important;
  padding: 12px 20px !important;
  font-weight: 400;
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: #333 !important;
  background: #f5f6fa;
  border-radius: 4px 4px 0 0;
}
.nav-link.active {
  color: #0984e3 !important;
  border-bottom: 3px solid #0984e3 !important;
  background: transparent !important;
}

.tab-content {
  margin-top: 2rem;
}

.tab-pane {
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.profile-form {
  max-width: 600px;
  margin-top: 2rem;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 14px;
}
.form-control:focus {
  outline: none;
  border-color: #0984e3;
  box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
}
.form-control:disabled {
  background-color: #f5f6fa;
  cursor: not-allowed;
}

.form-text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

.required {
  color: #d63031;
}

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@page {
  size: A4;
  margin: 12mm 15mm;
}
@media print {
  html {
    font-size: 9pt !important;
  }
  .navbar,
  .admin-sidebar,
  #actionButtons,
  .btn,
  footer,
  .no-print,
  .event-filter-bar {
    display: none !important;
  }
  body {
    background: #ffffff !important;
    line-height: 1.35;
    color: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .admin-container {
    display: block !important;
    padding: 0 !important;
  }
  .admin-main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    background: #ffffff !important;
  }
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .mb-4 {
    margin-bottom: 0.5rem !important;
  }
  .mb-3 {
    margin-bottom: 0.35rem !important;
  }
  .g-3 {
    --bs-gutter-y: 0.35rem;
    --bs-gutter-x: 0.35rem;
  }
  .g-4 {
    --bs-gutter-y: 0.5rem;
    --bs-gutter-x: 0.5rem;
  }
  .gap-3 {
    gap: 0.35rem !important;
  }
  .gap-2 {
    gap: 0.2rem !important;
  }
  .p-4 {
    padding: 0.5rem !important;
  }
  .py-2 {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  .dash-welcome {
    background: none !important;
    color: #000 !important;
    padding: 0 0 4pt !important;
    margin-bottom: 6pt !important;
    border-bottom: 1.5pt solid #000;
    border-radius: 0 !important;
  }
  .dash-welcome * {
    color: #000 !important;
    opacity: 1 !important;
  }
  .dash-welcome h1, .dash-welcome .fs-4 {
    font-size: 12pt !important;
    margin-bottom: 2pt !important;
  }
  .dash-welcome p {
    font-size: 8pt !important;
    margin-bottom: 0 !important;
  }
  .dash-welcome a {
    display: none !important;
  }
  .dash-stat {
    border: 1px solid #bbb !important;
    background: #ffffff !important;
    padding: 3pt 6pt !important;
    border-radius: 2px !important;
    text-align: center;
  }
  .dash-stat .dash-stat-label {
    font-size: 6pt;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .dash-stat .dash-stat-value {
    font-size: 9pt;
  }
  .dash-stat .dash-stat-sub {
    font-size: 5pt;
  }
  .card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 6pt !important;
  }
  .card-header {
    background: #f5f5f5 !important;
    color: #000 !important;
    padding: 3pt 8pt !important;
  }
  .card-header h6 {
    font-size: 8pt !important;
    margin: 0 !important;
  }
  .card-body {
    padding: 6pt 8pt !important;
    font-size: 8pt;
  }
  .card-footer {
    background: #fafafa !important;
    padding: 4pt 8pt !important;
    font-size: 8pt;
  }
  .table {
    font-size: 8pt !important;
  }
  .table th, .table td {
    border: 1px solid #ccc !important;
    padding: 2pt 5pt !important;
    line-height: 1.3;
  }
  .table thead th {
    background: #eee !important;
    color: #000 !important;
    font-size: 7pt !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .badge {
    border: 1px solid #999 !important;
    color: #000 !important;
    background: #eee !important;
    font-size: 7pt !important;
    padding: 1pt 4pt !important;
  }
  .alert {
    border: 1px solid #aaa !important;
    background: #f9f9f9 !important;
    color: #000 !important;
    padding: 3pt 8pt !important;
    font-size: 8pt !important;
    margin-bottom: 4pt !important;
  }
  .alert i {
    font-size: 9pt !important;
  }
  a[href] {
    color: #000 !important;
    text-decoration: underline;
  }
  .row {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .col-lg-5 {
    flex: 0 0 38% !important;
    max-width: 38% !important;
  }
  .col-lg-7 {
    flex: 0 0 62% !important;
    max-width: 62% !important;
  }
  .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .col-6 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
  .rounded-circle {
    width: 24pt !important;
    height: 24pt !important;
    font-size: 9pt !important;
    background: #eee !important;
    color: #000 !important;
    border: 1px solid #ccc;
  }
  .fs-4 {
    font-size: 11pt !important;
  }
  .fs-5 {
    font-size: 9pt !important;
  }
  .fs-6 {
    font-size: 8pt !important;
  }
  .small, small {
    font-size: 7pt !important;
  }
  hr {
    margin: 2pt 0 !important;
    border-color: #999 !important;
  }
  h1, h2, h3, h4, h5, h6 {
    break-after: avoid;
    page-break-after: avoid;
  }
  .table-responsive {
    overflow: visible !important;
  }
  .list-unstyled li {
    margin-bottom: 1pt !important;
  }
}
.error-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  text-align: center;
  padding: 50px;
}
.error-page h1 {
  color: #d63031;
}
.error-page p {
  font-size: 18px;
  color: #7f8c8d;
}
.error-page a {
  color: #0984e3;
  text-decoration: none;
}

.occurrence-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .occurrence-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.occurrence-tab {
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.occurrence-tab:hover {
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.05);
}
.occurrence-tab.active {
  color: #6c5ce7;
  border-bottom-color: #6c5ce7;
  font-weight: 600;
}
@media (max-width: 600px) {
  .occurrence-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

.occurrence-tab-content {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 2rem;
  min-height: 200px;
}
.card .occurrence-tab-content {
  border: none;
  border-radius: 0;
  padding: 1.5rem 0 0 0;
}

.occurrence-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.occurrence-panel-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #2d3436;
}
.occurrence-panel-header .occurrence-subtitle {
  margin: 0;
  color: #888;
  font-size: 0.85rem;
}

.occurrence-remaining {
  background: #6c5ce7;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.occurrence-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .occurrence-stats {
    gap: 0.5rem;
  }
}

.occ-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f6fa;
  border-radius: 8px;
  padding: 12px 20px;
  min-width: 90px;
}
@media (max-width: 600px) {
  .occ-stat {
    padding: 8px 12px;
    min-width: 70px;
  }
}

.occ-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6c5ce7;
}

.occ-stat-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.occurrence-panel .seating-map {
  margin-top: 1rem;
}

/* ── Site Footer ──────────────────────────────────────── */
.site-footer {
  background: #1e1e2e;
  color: #a6adc8;
  margin-top: 4rem;
  padding: 3rem 0 0;
  font-size: 0.9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.site-footer__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.site-footer__logo:hover {
  color: #cba6f7;
}
.site-footer__tagline {
  color: #7f849c;
  margin: 0 0 1.2rem;
  line-height: 1.5;
  font-size: 0.85rem;
}
.site-footer__social {
  display: flex;
  gap: 0.75rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #a6adc8;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.site-footer__social a:hover {
  background: #6c5ce7;
  color: #fff;
  transform: translateY(-2px);
}
.site-footer__heading {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.site-footer__link-cols {
  display: flex;
  gap: 1.5rem;
}
.site-footer__link-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__link-cols li {
  margin-bottom: 0.5rem;
}
.site-footer__link-cols a {
  color: #a6adc8;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.site-footer__link-cols a:hover {
  color: #cba6f7;
  padding-left: 4px;
}
.site-footer__email {
  display: inline-flex;
  align-items: center;
  color: #a6adc8;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.15s;
}
.site-footer__email:hover {
  color: #cba6f7;
}
.site-footer__cta {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.site-footer__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 0;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #585b70;
}

@media (max-width: 767.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__link-cols {
    justify-content: center;
  }
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 600;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.btn-primary {
  background-color: #6c5ce7;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #5f4d9f;
  transform: translateY(-2px);
}
.btn-success {
  background-color: #00b894;
  color: #ffffff;
}
.btn-success:hover {
  background-color: rgb(0, 133, 106.9782608696);
  transform: translateY(-2px);
}
.btn-danger {
  background-color: #d63031;
  color: #ffffff;
}
.btn-danger:hover {
  background-color: rgb(176.1169354839, 34.8830645161, 35.7338709677);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: #95a5a6;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #7f8c8d;
}
.btn-small {
  padding: 6px 12px;
  font-size: 12px;
}
.btn-full {
  width: 100%;
  margin-top: 1rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #6c5ce7;
  color: #6c5ce7;
}
.btn-outline:hover {
  background-color: #6c5ce7;
  color: #ffffff;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.card h3 {
  color: #6c5ce7;
  margin-bottom: 1rem;
}

.event-card {
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.event-card .event-card__image {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f5f6fa;
}
.event-card .event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.event-card:hover .event-card__image img {
  transform: scale(1.04);
}
.event-card .event-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(220.2545454545, 216.4727272727, 249.3272727273), rgb(180.1636363636, 172.0181818182, 242.7818181818));
  color: #6c5ce7;
  font-size: 2.5rem;
  opacity: 0.5;
}
.event-card .event-card__date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1;
  min-width: 48px;
}
.event-card .event-card__date-month {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #d63031;
  letter-spacing: 0.5px;
}
.event-card .event-card__date-day {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3436;
  margin-top: 1px;
}
.event-card .event-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card .event-card__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3436;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card .event-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: #7f8c8d;
  line-height: 1.35;
}
.event-card .event-card__meta i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.8rem;
  color: #6c5ce7;
}
.event-card .event-card__meta a {
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 600;
}
.event-card .event-card__meta a:hover {
  text-decoration: underline;
}
.event-card .event-card__desc {
  margin: 0.5rem 0 0 0;
  font-size: 0.82rem;
  color: #7f8c8d;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card .event-card__actions {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 8px 8px 0 0;
}
.event-card .card-content {
  padding: 1.5rem;
}
.event-card .event-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
}
.event-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  color: #2d3436;
}
.event-card .event-date {
  margin: 0 0 12px 0;
  color: #d9534f;
  font-size: 0.95rem;
  font-weight: 700;
}
.event-card .event-organizer {
  margin: 0 0 12px 0;
  color: #0066cc;
  font-size: 0.9rem;
}
.event-card .event-organizer a {
  color: #0066cc;
  text-decoration: none;
}
.event-card .event-organizer a:hover {
  text-decoration: underline;
}
.event-card .event-location {
  margin: 0 0 12px 0;
  color: #666;
  font-size: 0.9rem;
  padding: 0;
}
.event-card .event-description {
  margin: 0 0 1.5rem 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0;
}
.event-card .event-dates {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-price {
  font-size: 20px;
  font-weight: 700;
  color: #6c5ce7;
  margin-top: 1rem;
}

.organisation-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
}
.organisation-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: #2d3436;
}
.organisation-card .org-info {
  color: #666;
  margin: 0 0 1.5rem 0;
  font-size: 0.9rem;
}
.organisation-card .btn {
  display: inline-block;
}

.organisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-card h4 {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-card .stat-value {
  font-size: 32px;
  font-weight: 700;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.booking-summary-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 4px;
}
.booking-summary-card .summary-content {
  font-size: 14px;
  line-height: 1.8;
}
.booking-summary-card .summary-content .summary-title {
  margin-bottom: 1rem;
}
.booking-summary-card .summary-content .summary-title strong {
  color: #0984e3;
}
.booking-summary-card .summary-content .summary-seats {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #0984e3;
  border-radius: 0;
}
.booking-summary-card .summary-content .summary-section {
  border-top: 1px solid #dfe6e9;
  padding-top: 1rem;
}
.booking-summary-card .summary-content .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.booking-summary-card .summary-content .summary-total {
  margin-bottom: 0;
  font-weight: 700;
}

.checkout-alert {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 12px;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.welcome-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 3rem;
  text-align: center;
}
.welcome-container h1 {
  color: #6c5ce7;
  font-size: 48px;
  margin-bottom: 2rem;
}
.welcome-container > p {
  font-size: 18px;
  color: #636e72;
  margin: 2rem 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.quick-links a {
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #6c5ce7;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.quick-links a:hover {
  border-color: #6c5ce7;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.features {
  margin: 3rem 0;
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.features h2 {
  color: #6c5ce7;
  text-align: center;
  margin-bottom: 2rem;
}
.features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.features li {
  padding: 1rem;
  border-left: 4px solid #00b894;
  padding-left: 1.5rem;
}
.features li::before {
  content: "✓ ";
  color: #00b894;
  font-weight: 700;
  margin-right: 0.5rem;
}

.getting-started {
  margin: 3rem 0;
  padding: 2rem;
  background: #f0f7ff;
  border-radius: 8px;
  border-left: 4px solid #6c5ce7;
}
.getting-started p {
  margin-bottom: 1rem;
}
.getting-started p:last-child {
  margin-bottom: 0;
}
.getting-started strong {
  font-weight: 700;
}
.getting-started code {
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3436;
}
.form-group input:not([type=checkbox]):not([type=radio]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.form-group input:not([type=checkbox]):not([type=radio]):focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #6c5ce7;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-full {
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.form-full h2 {
  color: #6c5ce7;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.form-actions .btn {
  flex: 1;
}
@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }
}

.form-error {
  color: #d63031;
  font-size: 12px;
  margin-top: 4px;
}

.form-success {
  color: #00b894;
  font-size: 12px;
  margin-top: 4px;
}

.form-help {
  color: #7f8c8d;
  font-size: 12px;
  margin-top: 4px;
}

.input-group {
  display: flex;
  gap: 0.5rem;
}
.input-group input {
  flex: 1;
}
.input-group .btn {
  margin: 0;
}

.input-addon {
  background-color: #f5f6fa;
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 4px;
  color: #7f8c8d;
}

.login-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.login-container h1 {
  text-align: center;
  color: #6c5ce7;
  margin-bottom: 3rem;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}
.btn-login:active {
  transform: translateY(0);
}

.form-error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.info-box {
  background-color: #e7f3ff;
  border-left: 4px solid #6c5ce7;
  padding: 1.5rem;
  margin-top: 3rem;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}
.info-box strong {
  display: block;
  margin-bottom: 1rem;
}
.info-box div {
  margin-bottom: 8px;
}
.info-box div:last-child {
  margin-bottom: 0;
}

.seating-map {
  background: #ffffff;
  border-radius: 8px;
  padding: 3rem;
  margin: 2rem 0;
}

.seats-container {
  --seat-size: 40px;
  --seat-gap: 16px;
  --seat-font: 12px;
  display: flex;
  flex-direction: column;
  gap: var(--seat-gap, 2rem);
}

.seats-row {
  display: flex;
  gap: var(--seat-gap, 1rem);
  justify-content: center;
  align-items: center;
}

.seat-row {
  display: flex;
  gap: var(--seat-gap, 1rem);
  justify-content: center;
  align-items: center;
}

.row-label {
  min-width: 50px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #2d3436;
  user-select: none;
}

.stage {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 16px;
  letter-spacing: 1px;
}

.seat {
  width: var(--seat-size, 20px);
  height: var(--seat-size, 20px);
  min-width: var(--seat-size, 20px);
  min-height: var(--seat-size, 20px);
  aspect-ratio: 1;
  flex-shrink: 0;
  border: 2px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--seat-font, 12px);
  font-weight: 600;
  transition: all 0.15s ease;
  font-family: monospace;
  color: #ffffff;
  background-color: #f5f6fa;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1;
}
.seat.vip, .seat.standard, .seat.economy {
  background-color: #4CAF50;
  color: #ffffff;
  border-color: #4CAF50;
}
.seat.vip.available:hover, .seat.standard.available:hover, .seat.economy.available:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.seat.available {
  background-color: #81C784;
  color: #ffffff;
  border-color: #81C784;
}
.seat.available:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.seat.booked {
  background-color: #ccc;
  border-color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.seat.held {
  background-color: #fdcb6e;
  border-color: #fdcb6e;
  cursor: not-allowed;
  opacity: 0.7;
}
.seat.reserved {
  background-color: #FF5252;
  color: #ffffff;
  border-color: #FF5252;
}
.seat.selected {
  background-color: #6c5ce7;
  color: transparent;
  border-color: #6c5ce7;
  box-shadow: 0 0 0 3px #6c5ce7, 0 0 12px rgba(108, 92, 231, 0.8), inset 0 0 0 2px #6c5ce7;
  transform: scale(1.15);
  font-size: 20px;
  font-weight: 900;
  animation: seatSelected 0.3s ease-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.seat.selected::after {
  content: "✓";
  position: absolute;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
.seat.aisle {
  background: transparent;
  border: 2px dashed #ddd;
  cursor: default;
  border-radius: 3px;
}
.seat.disabled {
  background-color: #ccc;
  color: #999;
  border-color: #999;
  cursor: default;
  font-size: 16px;
}
.seat.disabled.seat--compact {
  font-size: 12px;
}
.seat.seat-aisle-gap {
  background: transparent;
  border: 2px dashed #ddd;
  border-radius: 3px;
  cursor: default;
}
.seat.seat-deleted-gap {
  visibility: hidden;
  cursor: default;
}
.seat.seat--map {
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.seat.seat--cash {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.seat.seat--compact {
  font-size: 10px;
}

.legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
}
.legend .legend-item .legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}
.legend .legend-item .legend-color-vip,
.legend .legend-item .legend-color-standard,
.legend .legend-item .legend-color-economy {
  background: #4CAF50;
}
.legend .legend-item .legend-color-aisle {
  background: transparent;
  border: 2px dashed #ccc;
  border-radius: 4px;
}
.legend .legend-item .legend-color-held {
  background: #fdcb6e;
  opacity: 0.6;
}
.legend .legend-item .legend-color-sold {
  background: #ccc;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.seat-availability {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f5f5f5;
  border-radius: 4px;
  border-left: 4px solid #0984e3;
}
.seat-availability h4 {
  margin: 0 0 1rem 0;
  font-size: 14px;
  color: #333;
}
.seat-availability .availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  font-size: 13px;
}
.seat-availability .availability-grid .availability-item {
  text-align: center;
}
.seat-availability .availability-grid .availability-item .availability-count {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.seat-availability .availability-grid .availability-item .availability-count.available {
  color: #81C784;
}
.seat-availability .availability-grid .availability-item .availability-count.held {
  color: #fdcb6e;
}
.seat-availability .availability-grid .availability-item .availability-count.sold {
  color: #d63031;
}
.seat-availability .availability-grid .availability-item .availability-label {
  color: #666;
}

.booking-summary {
  background: #f5f6fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.booking-summary h4 {
  color: #6c5ce7;
  margin-bottom: 1rem;
  font-weight: 700;
}
.booking-summary .summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 14px;
}
.booking-summary .summary-item:not(:last-child) {
  border-bottom: 1px solid #dfe6e9;
}
.booking-summary .summary-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 16px;
  font-weight: 700;
  color: #6c5ce7;
  border-top: 2px solid #dfe6e9;
  margin-top: 1rem;
}

.loading {
  text-align: center;
  padding: 3rem;
  color: #7f8c8d;
  font-size: 16px;
}

.error-message {
  background-color: #fee;
  border-left: 4px solid #d63031;
  padding: 1.5rem;
  border-radius: 4px;
  color: #d63031;
  margin: 1rem 0;
}

.success-message {
  background-color: #efe;
  border-left: 4px solid #00b894;
  padding: 1.5rem;
  border-radius: 4px;
  color: #00b894;
  margin: 1rem 0;
}

.venue-builder-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .venue-builder-layout {
    flex-direction: column;
  }
}

.venue-builder-map {
  flex: 1;
  min-width: 0;
  min-height: 500px;
  position: sticky;
  top: 130px;
  align-self: flex-start;
}

.venue-config-panel {
  max-width: 350px;
  min-width: 300px;
  padding-right: 0.625rem;
}
.venue-config-panel h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.venue-config-panel .form-label {
  font-size: 0.6875rem;
  margin-bottom: 0.1875rem;
}
.venue-config-panel .form-control,
.venue-config-panel .form-select {
  font-size: 0.75rem;
  padding: 0.375rem 0.5rem;
}
.venue-config-panel h4 {
  margin: 0 0 0.75rem 0;
}

.venue-config-section {
  margin-top: 1rem;
  border-top: 1px solid var(--bs-border-color, #ddd);
  padding-top: 1rem;
}

.venue-revenue-card {
  margin-top: 1rem;
  border-top: 1px solid var(--bs-border-color, #ddd);
  padding-top: 1rem;
  background: var(--bs-tertiary-bg, #f9f9f9);
  padding: 0.75rem;
  border-radius: 0.25rem;
}
.venue-revenue-card > h4 {
  margin: 0 0 0.5rem 0;
}

.venue-grid-builder {
  display: inline-grid;
  gap: 10px;
  padding: 1.25rem;
  background: var(--bs-tertiary-bg, #f9f9f9);
  border-radius: 0.375rem;
  flex: 1;
  overflow: auto;
  align-content: start;
  justify-content: center;
  border: 1px solid var(--bs-border-color-translucent, #eee);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.venue-builder-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.75rem;
  margin-top: 1.25rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
}

.legend-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aisle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.6875rem;
  margin: 0.125rem;
}
.aisle-tag--column {
  background: var(--bs-secondary-bg, #e9ecef);
}
.aisle-tag--row {
  background: #d4edda;
}
.aisle-tag .aisle-tag-remove {
  background: none;
  border: none;
  color: var(--bs-danger, #dc3545);
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0;
  line-height: 1;
}

.venue-revenue-preview {
  background: #e8f5e9;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #c8e6c9;
  font-size: 0.6875rem;
}

.revenue-line {
  margin: 0.25rem 0;
  padding: 0.25rem 0;
  border-bottom: 1px solid #c8e6c9;
}

.revenue-total {
  margin-top: 0.375rem;
  padding-top: 0.375rem;
  border-top: 2px solid #a5d6a7;
  font-weight: bold;
}

.event-filter-bar {
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow all 0.2s ease;
}
.event-filter-bar:focus-within {
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.12);
  border-color: rgba(108, 92, 231, 0.3);
}
.event-filter-bar__fields {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.event-filter-bar__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 140px;
}
.event-filter-bar__field--grow {
  flex: 2 1 200px;
}
.event-filter-bar__field--date {
  flex: 0 1 150px;
}
.event-filter-bar__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7f8c8d;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}
.event-filter-bar__input {
  width: 100%;
  padding: 0.45rem 0.7rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2d3436;
  background: #f5f6fa;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color all 0.2s ease, background all 0.2s ease;
  outline: none;
}
.event-filter-bar__input::placeholder {
  color: rgb(207.8888888889, 218.1944444444, 222.6111111111);
}
.event-filter-bar__input:hover {
  background: rgb(238.2, 239.88, 246.6);
}
.event-filter-bar__input:focus {
  background: #ffffff;
  border-color: #6c5ce7;
}
.event-filter-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  padding-bottom: 1px;
}
.event-filter-bar__actions .btn {
  padding: 0.45rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
}
.event-filter-bar__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #7f8c8d;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background all 0.2s ease, color all 0.2s ease;
}
.event-filter-bar__reset:hover {
  background: rgba(214, 48, 49, 0.1);
  color: #d63031;
}
@media (max-width: 768px) {
  .event-filter-bar {
    padding: 1rem;
  }
  .event-filter-bar__fields {
    flex-direction: column;
    gap: 0.5rem;
  }
  .event-filter-bar__field, .event-filter-bar__field--grow, .event-filter-bar__field--date {
    flex: 1 1 auto;
    width: 100%;
  }
  .event-filter-bar__actions {
    width: 100%;
    padding-top: 0.25rem;
  }
  .event-filter-bar__actions .btn {
    flex: 1;
  }
}

.org-hero {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid #dfe6e9;
  background: #ffffff;
}
.org-hero__cover {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  overflow: hidden;
}
.org-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.org-hero__bar {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 2rem 1.5rem;
  padding-left: calc(120px + 2rem + 1.5rem);
  min-height: calc(120px - 40px + 1.5rem);
}
.org-hero__avatar {
  position: absolute;
  left: 2rem;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #6c5ce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  border: 4px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2;
}
.org-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.org-hero__info {
  min-width: 0;
  padding-top: 0.25rem;
}
.org-hero__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  line-height: 1.25;
  color: #2d3436;
}
.org-hero__org {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  color: #7f8c8d;
}
.org-hero__bio {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #2d3436;
  max-width: 600px;
}
@media (max-width: 576px) {
  .org-hero__cover {
    height: 150px;
  }
  .org-hero__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem 1.5rem;
    padding-top: calc(120px - 40px + 0.5rem);
  }
  .org-hero__avatar {
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    font-size: 2rem;
    top: -36px;
  }
  .org-hero__name {
    font-size: 1.25rem;
  }
  .org-hero__bio {
    max-width: none;
  }
}

.org-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.org-layout__main {
  min-width: 0;
}
.org-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 1.5rem;
}
.org-layout__sidebar-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3436;
  margin: 0;
  padding-bottom: 0.25rem;
}
@media (max-width: 900px) {
  .org-layout {
    grid-template-columns: 1fr;
  }
  .org-layout__sidebar {
    position: static;
  }
}

.org-sidebar-card {
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  padding: 1.5rem;
}
.org-sidebar-card__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7f8c8d;
  margin: 0 0 0.5rem 0;
}
.org-sidebar-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.org-sidebar-card__list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.88rem;
  color: #2d3436;
  word-break: break-word;
}
.org-sidebar-card__list li i {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  color: #7f8c8d;
}
.org-sidebar-card__list li a {
  color: #6c5ce7;
  text-decoration: none;
}
.org-sidebar-card__list li a:hover {
  text-decoration: underline;
}
.org-sidebar-card__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.org-sidebar-card__social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
  border-radius: 999px;
  text-decoration: none;
  transition: background all 0.2s ease, color all 0.2s ease;
}
.org-sidebar-card__social-link:hover {
  background: #6c5ce7;
  color: #ffffff;
}

.org-profile-events {
  margin-top: 1.5rem;
}
.org-profile-events__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.org-profile-events__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 999px;
}

.profile-img-upload__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6fa;
  border: 2px dashed #dfe6e9;
  border-radius: 8px;
  overflow: hidden;
}
.profile-img-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-img-upload__preview--logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.profile-img-upload__preview--cover {
  width: 100%;
  height: 140px;
}
.profile-img-upload__placeholder {
  font-size: 2rem;
  color: #7f8c8d;
  opacity: 0.5;
}

.dash-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.dash-welcome__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.dash-welcome__sub {
  margin: 0.25rem 0 0;
  color: #7f8c8d;
  font-size: 0.9rem;
}
@media (max-width: 576px) {
  .dash-welcome {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.dash-stat {
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow all 0.2s ease;
}
.dash-stat:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dash-stat--accent {
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  border-color: transparent;
  color: #ffffff;
}
.dash-stat--accent .dash-stat__label {
  color: rgba(255, 255, 255, 0.8);
}
.dash-stat--accent .dash-stat__sub {
  color: rgba(255, 255, 255, 0.65);
}
.dash-stat__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7f8c8d;
  margin-bottom: 0.25rem;
}
.dash-stat__value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.dash-stat__sub {
  display: block;
  font-size: 0.75rem;
  color: #7f8c8d;
  margin-top: 0.25rem;
}

.dash-stat-sub {
  display: block;
  font-size: 0.7rem;
  color: #7f8c8d;
  margin-top: 2px;
}

.dash-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .dash-actions {
    flex-direction: column;
  }
}

.dash-action {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  text-decoration: none;
  color: #2d3436;
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color all 0.2s ease, box-shadow all 0.2s ease;
}
.dash-action:hover {
  border-color: #6c5ce7;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.1);
  color: #6c5ce7;
}
.dash-action__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.dash-action__text {
  white-space: nowrap;
}

.dash-table {
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  overflow: hidden;
}
.dash-table__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  padding: 1.5rem;
  border-bottom: 1px solid #dfe6e9;
}
.dash-table__empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #7f8c8d;
}
.dash-table__empty a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #6c5ce7;
  text-decoration: none;
  font-weight: 600;
}
.dash-table__empty a:hover {
  text-decoration: underline;
}
.dash-table .table {
  margin-bottom: 0;
}

.form-section {
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .form-section {
    padding: 1.5rem;
  }
}

.form-section-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-section-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #6c5ce7;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.form-section-desc {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #7f8c8d;
}

.form-section-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
}

.ga-format-picker {
  display: flex;
  gap: 1rem;
}
@media (max-width: 576px) {
  .ga-format-picker {
    flex-direction: column;
  }
}

.ga-format-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid #dfe6e9;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}
.ga-format-option:hover {
  border-color: #6c5ce7;
  background: white;
}
.ga-format-option--active {
  border-color: #6c5ce7;
  background: white;
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}
.ga-format-option strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.ga-format-icon {
  font-size: 1.75rem;
  color: #6c5ce7;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  flex-shrink: 0;
}

.ga-ticket-row {
  transition: all 0.2s ease;
}
.ga-ticket-row:hover {
  border-color: #6c5ce7 !important;
}

.ga-capacity-summary {
  background: #f5f6fa;
}

.ga-ticket-selection {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dfe6e9;
}
.ga-ticket-selection__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ga-ticket-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ga-ticket-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 2px solid #dfe6e9;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.ga-ticket-card:hover {
  border-color: #6c5ce7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.ga-ticket-card--sold-out {
  opacity: 0.55;
  pointer-events: none;
  background: #f5f6fa;
}
.ga-ticket-card__info {
  flex: 1;
  min-width: 0;
}
.ga-ticket-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 2px;
}
.ga-ticket-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6c5ce7;
}
.ga-ticket-card__avail {
  margin-top: 2px;
}
.ga-ticket-card__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ga-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  font-size: 1.1rem;
}

.ga-qty-display {
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

.ga-edit-ticket-row {
  transition: all 0.2s ease;
}
.ga-edit-ticket-row:hover {
  border-color: #6c5ce7 !important;
}

.text-primary {
  color: #51c0a7 !important;
}

.text-success {
  color: #00b894;
}

.text-danger {
  color: #d63031;
}

.text-warning {
  color: #fdcb6e;
}

.text-info {
  color: #0984e3;
}

.text-muted {
  color: #7f8c8d;
}

.text-light {
  color: #f5f6fa;
}

.bg-primary {
  background-color: #6c5ce7;
}

.bg-success {
  background-color: #00b894;
}

.bg-danger {
  background-color: #d63031;
}

.bg-warning {
  background-color: #fdcb6e;
}

.bg-info {
  background-color: #0984e3;
}

.bg-light {
  background-color: #f5f6fa;
}

.bg-white {
  background-color: #ffffff;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 3rem;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.border-0 {
  border: none !important;
}

.rounded {
  border-radius: 8px;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}
.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f5f6fa;
  border-top-color: #6c5ce7;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.alert {
  padding: 1.5rem 2rem;
  border-radius: 4px;
  border-left: 4px solid;
  margin-bottom: 1.5rem;
}
.alert p {
  margin-bottom: 0;
}
.alert.alert-success {
  background-color: #e8f5e9;
  border-left-color: #00b894;
  color: #2e7d32;
}
.alert.alert-danger {
  background-color: #ffebee;
  border-left-color: #d63031;
  color: #c62828;
}
.alert.alert-warning {
  background-color: #fff3cd;
  border-left-color: #fdcb6e;
  color: #856404;
}
.alert.alert-info {
  background-color: #e3f2fd;
  border-left-color: #0984e3;
  color: #0d47a1;
}

@media print {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.login-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.login-container h1 {
  text-align: center;
  color: #6c5ce7;
  margin-bottom: 3rem;
  margin-top: 0;
}

.form-error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.info-box {
  background-color: #e7f3ff;
  border-left: 4px solid #6c5ce7;
  padding: 1.5rem;
  margin-top: 3rem;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}
.info-box strong {
  display: block;
  margin-bottom: 1rem;
}
.info-box strong:first-child {
  margin-top: 0;
}
.info-box div {
  margin-bottom: 4px;
}
.info-box div:last-child {
  margin-bottom: 0;
}

.welcome-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 3rem;
  text-align: center;
}
.welcome-container h1 {
  color: #6c5ce7;
  font-size: 48px;
  margin-bottom: 2rem;
}
.welcome-container > p {
  font-size: 18px;
  color: #636e72;
  margin: 2rem 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.quick-links a {
  padding: 3rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #6c5ce7;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.quick-links a:hover {
  border-color: #6c5ce7;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.features {
  margin: 3rem 0;
  background: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.features h2 {
  color: #6c5ce7;
  text-align: center;
  margin-bottom: 2rem;
}
.features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.features li {
  padding: 1rem;
  border-left: 4px solid #00b894;
  padding-left: 1.5rem;
}
.features li::before {
  content: "✓ ";
  color: #00b894;
  font-weight: 700;
  margin-right: 0.5rem;
}

.getting-started {
  margin: 3rem 0;
  padding: 2rem;
  background: #f0f7ff;
  border-radius: 8px;
  border-left: 4px solid #6c5ce7;
}
.getting-started p {
  margin-bottom: 1rem;
}
.getting-started p:last-child {
  margin-bottom: 0;
}
.getting-started strong {
  font-weight: 700;
}
.getting-started code {
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 12px;
}

/* ── Site Footer ── moved to _footer.scss */
/* Booking Page Styles */
.booking-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #6c5ce7, #5f4d9f);
}
.booking-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.booking-hero--has-image .booking-hero__image {
  opacity: 1;
}
.booking-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.booking-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}
.booking-hero__title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.booking-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.booking-hero__meta-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.booking-hero__meta-item i {
  font-size: 1rem;
}

.booking-status-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #f5f6fa;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #dfe6e9;
}
.booking-status-bar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.booking-status-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #7f8c8d;
}
.booking-status-bar__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid transparent;
}
.booking-status-bar__dot--available {
  background: #81C784;
}
.booking-status-bar__dot--held {
  background: #fdcb6e;
  opacity: 0.7;
}
.booking-status-bar__dot--sold {
  background: #ccc;
  opacity: 0.6;
}
.booking-status-bar__dot--selected {
  background: #6c5ce7;
}
.booking-status-bar__dot--accessible {
  background: #ccc;
  border-color: #999;
}
.booking-status-bar__counts {
  display: flex;
  gap: 1rem;
}
.booking-status-bar__count {
  font-size: 0.8rem;
  font-weight: 600;
}
.booking-status-bar__count span {
  font-weight: 700;
}
.booking-status-bar__count--available span {
  color: #81C784;
}
.booking-status-bar__count--held span {
  color: #fdcb6e;
}
.booking-status-bar__count--sold span {
  color: #7f8c8d;
}
.booking-status-bar__count--accessible span {
  color: #999;
}

.booking-left {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-right {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 90px;
}

.booking-summary h3 {
  color: #6c5ce7;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-summary h3 i {
  font-size: 1.1rem;
}

.booking-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: #7f8c8d;
}
.booking-empty-state__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.booking-empty-state p {
  margin: 0;
  font-size: 0.9rem;
}

.selected-seats {
  margin-bottom: 1.5rem;
}
.selected-seats__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.selected-seats__header h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3436;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.selected-seats__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}
.selected-seats__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #f5f6fa;
  border-radius: 4px;
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.selected-seats__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.selected-seats__price {
  font-weight: 700;
  color: #6c5ce7;
  white-space: nowrap;
}

.price-breakdown {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f5f6fa;
  border-radius: 4px;
}
.price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #7f8c8d;
}
.price-breakdown .price-row.total {
  font-weight: 700;
  font-size: 1rem;
  color: #2d3436;
  border-top: 2px solid #dfe6e9;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

.timer {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff8e1;
  border-radius: 4px;
  border: 1px solid #ffe082;
  text-align: center;
  font-size: 0.85rem;
  color: #6d4c00;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.timer > i {
  font-size: 1rem;
}
.timer__bar {
  width: 100%;
  height: 4px;
  background: #ffe082;
  border-radius: 2px;
  overflow: hidden;
}
.timer__bar-fill {
  height: 100%;
  width: 100%;
  background: #f9a825;
  border-radius: 2px;
  transition: width 1s linear;
}
.timer__bar-fill--danger {
  background: #d63031;
  animation: timerPulse 1s infinite;
}

@keyframes timerPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.btn-checkout {
  font-weight: 700;
  padding: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ticket-type-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid #dfe6e9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.5rem;
}
.ticket-type-option:hover {
  border-color: #6c5ce7;
  background: rgba(108, 92, 231, 0.04);
}
.ticket-type-option--active {
  border-color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
}
.ticket-type-option i {
  font-size: 1.2rem;
  color: #6c5ce7;
}
.ticket-type-option__label {
  flex: 1;
  font-weight: 600;
}
.ticket-type-option__price {
  font-weight: 700;
  color: #6c5ce7;
}

.loading {
  text-align: center;
  padding: 3rem;
  color: #7f8c8d;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #dfe6e9;
  border-top-color: #6c5ce7;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.alert {
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.alert.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.alert.alert-success p {
  margin: 0;
}

.btn-full {
  width: 100%;
}

@media (max-width: 575px) {
  .booking-hero {
    min-height: 140px;
    margin-bottom: 1.5rem;
  }
  .booking-hero__content {
    min-height: 140px;
    padding: 1.5rem 1rem 1rem;
  }
  .booking-hero__title {
    font-size: 1.25rem;
  }
  .booking-status-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-status-bar__counts {
    width: 100%;
    justify-content: space-between;
  }
  .booking-left,
  .booking-right {
    padding: 1rem;
  }
  .booking-right {
    position: static;
  }
  .seating-map {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    mask-image: linear-gradient(to right, transparent 0, black 1rem, black calc(100% - 1rem), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 1rem, black calc(100% - 1rem), transparent 100%);
  }
  .seats-container {
    min-width: max-content;
  }
  .stage {
    font-size: 13px;
    padding: 10px;
  }
  .row-label {
    min-width: 30px;
    font-size: 10px;
  }
  .selected-seats__list {
    max-height: 180px;
  }
}
/* ============================================
   Booking History Page
   ============================================ */
.bh-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
  padding-bottom: 6rem;
}

.bh-header {
  margin-bottom: 2rem;
}
.bh-header__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3436;
  margin: 0 0 4px;
}
.bh-header__sub {
  color: #7f8c8d;
  margin: 0;
  font-size: 0.95rem;
}

.bh-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.bh-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  padding: 0.5rem 1.5rem;
  min-width: 140px;
}
.bh-stat > i {
  font-size: 1.25rem;
  color: #6c5ce7;
}
.bh-stat > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.bh-stat__value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d3436;
}
.bh-stat__label {
  font-size: 0.75rem;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bh-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #dfe6e9;
  padding-bottom: 0;
}

.bh-tab {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7f8c8d;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
  border-radius: 0;
}
.bh-tab:hover {
  color: #2d3436;
}
.bh-tab.active {
  color: #6c5ce7;
  border-bottom-color: #6c5ce7;
}

.bh-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-loading {
  text-align: center;
  padding: 6rem 1.5rem;
  color: #7f8c8d;
}
.bh-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #dfe6e9;
  border-top-color: #6c5ce7;
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: bh-spin 0.8s linear infinite;
}
.bh-loading p {
  margin: 0;
  font-size: 0.95rem;
}

@keyframes bh-spin {
  to {
    transform: rotate(360deg);
  }
}
.bh-empty {
  text-align: center;
  padding: 6rem 1.5rem;
}
.bh-empty > i {
  font-size: 3rem;
  color: #dfe6e9;
  display: block;
  margin-bottom: 1rem;
}
.bh-empty h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3436;
  margin: 0 0 0.25rem;
}
.bh-empty p {
  color: #7f8c8d;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.bh-empty--error > i {
  color: #d63031;
}
.bh-empty--small {
  padding: 3rem 1.5rem;
}
.bh-empty--small > i {
  font-size: 2rem;
}
.bh-empty--small p {
  margin-bottom: 0;
}

.bh-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.bh-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.bh-card--confirmed {
  border-left: 4px solid #00b894;
}
.bh-card--held {
  border-left: 4px solid #fdcb6e;
}
.bh-card--cancelled {
  border-left: 4px solid #d63031;
  opacity: 0.7;
}
.bh-card--past:not(.bh-card--cancelled) {
  border-left-color: #7f8c8d;
}
.bh-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 1rem 0.5rem;
  background: rgba(108, 92, 231, 0.04);
  border-right: 1px solid #dfe6e9;
  flex-shrink: 0;
}
.bh-card__date-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c5ce7;
}
.bh-card__date-day {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3436;
  line-height: 1.1;
}
.bh-card__date-weekday {
  font-size: 0.7rem;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.bh-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.bh-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.bh-card__info {
  flex: 1;
  min-width: 0;
}
.bh-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d3436;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bh-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #7f8c8d;
}
.bh-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bh-card__meta i {
  font-size: 0.85rem;
}
.bh-card__ref {
  font-family: "SFMono-Regular", "Consolas", monospace;
  letter-spacing: 0.3px;
}
.bh-card__status-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.bh-card__total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3436;
}
.bh-card__details {
  border-top: 1px solid #dfe6e9;
}
.bh-card__details-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6c5ce7;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.bh-card__details-toggle::-webkit-details-summary-marker, .bh-card__details-toggle::marker {
  display: none;
  content: "";
}
.bh-card__details-toggle i {
  transition: transform 0.2s ease;
  font-size: 0.75rem;
}
.bh-card__details-toggle:hover {
  background: rgba(108, 92, 231, 0.04);
}
.bh-card__details[open] .bh-card__details-toggle i {
  transform: rotate(180deg);
}
.bh-card__details-content {
  padding: 0 1.5rem 1.5rem;
}

.bh-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bh-status--confirmed {
  background: rgba(0, 184, 148, 0.12);
  color: rgb(0, 143.2, 115.1826086957);
}
.bh-status--held {
  background: rgba(253, 203, 110, 0.25);
  color: rgb(113.195620438, 85.1094890511, 3.404379562);
}
.bh-status--cancelled {
  background: rgba(214, 48, 49, 0.1);
  color: #d63031;
}

.bh-detail-section {
  margin-bottom: 1rem;
}
.bh-detail-section:last-child {
  margin-bottom: 0;
}
.bh-detail-section h6 {
  font-size: 0.78rem;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 0.5rem;
}

.bh-seats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bh-seat-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(108, 92, 231, 0.08);
  color: #6c5ce7;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 4px;
  font-family: "SFMono-Regular", "Consolas", monospace;
  letter-spacing: 0.3px;
}

.bh-price-breakdown {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

.bh-price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #7f8c8d;
}
.bh-price-row + .bh-price-row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.bh-price-row--discount {
  color: #00b894;
}
.bh-price-row--total {
  border-top: 2px solid #dfe6e9 !important;
  padding-top: 0.5rem;
  margin-top: 2px;
  font-weight: 700;
  color: #2d3436;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .bh-page {
    padding: 1rem;
  }
  .bh-stats {
    gap: 0.5rem;
  }
  .bh-stat {
    min-width: 0;
    flex: 1;
    padding: 0.5rem 0.5rem;
    gap: 6px;
  }
  .bh-stat > i {
    font-size: 1rem;
  }
  .bh-stat__value {
    font-size: 1rem;
  }
  .bh-card {
    flex-direction: column;
  }
  .bh-card__date {
    flex-direction: row;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid #dfe6e9;
    padding: 0.5rem 1rem;
    gap: 6px;
  }
  .bh-card__date-day {
    font-size: 1.1rem;
  }
  .bh-card__date-month, .bh-card__date-weekday {
    font-size: 0.7rem;
  }
  .bh-card__top {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  .bh-card__status-wrap {
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
  }
  .bh-card__title {
    white-space: normal;
  }
  .bh-card__details-toggle, .bh-card__details-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bh-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* Checkout Page Styles - Using Bootstrap Grid (col-lg-8, col-lg-4) */
.checkout-header {
  margin-bottom: 2rem;
}
.checkout-header h2 {
  color: #6c5ce7;
  margin: 0;
}

.checkout-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-right {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-section {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.checkout-section h3 {
  color: #6c5ce7;
  margin-bottom: 1rem;
  font-size: 18px;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background-color: #f5f6fa;
  border-radius: 4px;
  font-size: 14px;
}

.order-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 14px;
}
.order-total-row.total {
  font-weight: bold;
  font-size: 16px;
  color: #6c5ce7;
}

.price-summary {
  padding: 1rem;
}
.price-summary h3 {
  color: #6c5ce7;
  margin-bottom: 1rem;
}

.total-price {
  font-size: 28px;
  font-weight: bold;
  color: #6c5ce7;
  margin: 1rem 0;
}

.checkout-alert {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 12px;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.booking-summary-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
}

.summary-content {
  font-size: 14px;
  line-height: 1.8;
}

.summary-title {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #6c5ce7;
}

.summary-seats {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-left: 4px solid #6c5ce7;
  border-radius: 0;
}

.summary-section {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-total {
  margin-bottom: 0;
  font-weight: bold;
}

#payment-element {
  margin-bottom: 20px;
}

.payment-info {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #dfe6e9;
}

#payment-message {
  color: #d63031;
  font-size: 14px;
  margin-top: 10px;
}

#spinner {
  display: inline-block;
}

#button-text {
  display: inline-block;
}

/* Bootstrap handles responsive stacking for col-lg-8/col-lg-4 */
.chart-wrapper {
  height: 250px;
  position: relative;
}

.chart-wrapper-wide {
  height: 220px;
  position: relative;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chart-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 3px 10px;
  background: #f5f6fa;
  border-radius: 4px;
}
.chart-legend .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chart-legend .legend-label {
  color: #2d3436;
}
.chart-legend .legend-value {
  font-weight: 600;
  color: #7f8c8d;
}

.location-list {
  max-height: 280px;
  overflow-y: auto;
}
.location-list .location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(223, 230, 233, 0.5);
}
.location-list .location-item:last-child {
  border-bottom: none;
}
.location-list .location-item .location-name {
  font-size: 0.85rem;
  color: #2d3436;
}
.location-list .location-item .location-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.08);
  padding: 2px 10px;
  border-radius: 12px;
  min-width: 32px;
  text-align: center;
}

.venue-map {
  min-height: 200px;
}

.chart-no-data {
  text-align: center;
  padding: 32px 16px;
  color: #7f8c8d;
}
.chart-no-data .chart-no-data-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.chart-no-data p {
  font-size: 0.85rem;
  margin: 0 0 4px;
  color: #2d3436;
}
.chart-no-data small {
  font-size: 0.75rem;
  color: #7f8c8d;
}

/* ── CMS Content Pages ────────────────────────────────── */
.cms-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #2d3436;
}
.cms-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.cms-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.cms-content p {
  margin-bottom: 1rem;
}
.cms-content ul, .cms-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.cms-content li {
  margin-bottom: 0.35rem;
}
.cms-content a {
  color: #6c5ce7;
}
.cms-content a:hover {
  text-decoration: underline;
}
.cms-content blockquote {
  border-left: 4px solid #6c5ce7;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: #f8f9fa;
  border-radius: 0 0.25rem 0.25rem 0;
}
.cms-content hr {
  margin: 2rem 0;
  border-color: #dfe6e9;
}
.cms-content {
  /* Accordion inside CMS pages */
}
.cms-content .accordion {
  margin: 1.5rem 0;
}
.cms-content .accordion-item {
  border: 1px solid #e9ecef;
  margin-bottom: 0;
}
.cms-content .accordion-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.cms-content .accordion-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.cms-content .accordion-item + .accordion-item {
  border-top: none;
}
.cms-content .accordion-header {
  margin: 0;
}
.cms-content .accordion-button {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  color: #2d3436;
  background: #fff;
  line-height: 1.4;
}
.cms-content .accordion-button:not(.collapsed) {
  color: #6c5ce7;
  background: #f0edfc;
  box-shadow: none;
}
.cms-content .accordion-button:focus {
  box-shadow: none;
  border-color: #dfe6e9;
}
.cms-content .accordion-button::after {
  flex-shrink: 0;
}
.cms-content .accordion-body {
  padding: 1rem 1.25rem;
  line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
}
.cms-content {
  /* Cards inside CMS pages */
}
.cms-content .card {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cms-content .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.cms-content .card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.cms-content .card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #555;
}
.cms-content .display-4 {
  color: #51c0a7 !important;
}

/* ── Support / Help Centre Page ──────────────────────── */
/* Hero banner */
.support-hero {
  background: linear-gradient(135deg, #1e1e2e 0%, #2d3456 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
  color: #fff;
}
.support-hero__icon {
  font-size: 2.8rem;
  color: #51c0a7;
  display: block;
  margin-bottom: 1rem;
}
.support-hero__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.support-hero__intro {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section headings */
.support-section__heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2d3436;
  font-family: "Poppins", sans-serif;
}
.support-section__heading .bi {
  color: #51c0a7;
}

/* Guide cards */
.support-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.support-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #f0edfc 0%, #e8f8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.support-card__icon .bi {
  font-size: 1.4rem;
  color: #6c5ce7;
}
.support-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2d3436;
  font-family: "Poppins", sans-serif;
}
.support-card__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}
.support-card__body p {
  margin-bottom: 0.5rem;
}
.support-card__body p:last-child {
  margin-bottom: 0;
}
.support-card__body ol, .support-card__body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.support-card__body li {
  margin-bottom: 0.25rem;
}

/* FAQ accordion (extends CMS accordion styles) */
.support-faq .accordion-item {
  border: 1px solid #e9ecef;
  margin-bottom: 0;
}
.support-faq .accordion-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.support-faq .accordion-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.support-faq .accordion-item + .accordion-item {
  border-top: none;
}
.support-faq .accordion-button {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  color: #2d3436;
  background: #fff;
}
.support-faq .accordion-button:not(.collapsed) {
  color: #6c5ce7;
  background: #f0edfc;
  box-shadow: none;
}
.support-faq .accordion-button:focus {
  box-shadow: none;
  border-color: #dfe6e9;
}
.support-faq .accordion-body {
  padding: 1rem 1.25rem;
  line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
}

/* Contact call-to-action section */
.support-contact {
  background: linear-gradient(135deg, #1e1e2e 0%, #2d3456 100%);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  color: #fff;
}
.support-contact__heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.support-contact__heading .bi {
  color: #51c0a7;
}
.support-contact__text {
  opacity: 0.85;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.support-contact__btn {
  white-space: nowrap;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .support-hero {
    padding: 2.5rem 0 2rem;
  }
  .support-hero__title {
    font-size: 1.6rem;
  }
  .support-hero__intro {
    font-size: 1rem;
  }
  .support-contact {
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .support-contact__btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}
