body,
html {
  padding: 0px;
  margin: 0px;
  font-family: Manrope, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #002862 0%, #1a3d7a 100%);
  min-height: 100vh;
}

label,
span,
h1,
h2,
h3,
h4,
p,
th,
td,
a {
  color: #ddd;
}

header {
  background-color: #21307f;
  color: white;
}

.header {
  height: 120px;
}

.logo {
  position: absolute;
  left: 12px;
}

.logo img {
  height: 60px;
}

.w-100 {
  width: 100px;
}
.w-200 {
  width: 200px;
}
.w-300 {
  width: 300px;
}

footer {
  color: white;
  background-color: #1a1a1a;
}

#main_wrapper {
  min-height: calc(100vh - 240px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#main_wrapper label,
#main_wrapper span,
#main_wrapper h1,
#main_wrapper h2,
#main_wrapper h3,
#main_wrapper h4,
#main_wrapper p,
#main_wrapper th,
#main_wrapper td,
#main_wrapper a {
  color: #333;
}

.steps {
  width: 100%;
  background-color: #6c757d;
  height: 3em;
  line-height: 1em;
  border-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
}

.steps a {
  padding: 1em;
  text-align: center;
  display: inline-block;
  position: relative;
  height: 3em;
  box-sizing: border-box;
  color: white;
  opacity: 0.8;
  float: left;
  box-shadow: inset 8em 0 4em -4em rgb(0 0 0 / 5%);
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.steps a span {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

.steps a span::before {
  content: "";
  display: inline-block;
  width: 1.5em;
}

.steps a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.5em solid transparent;
  border-left: 1.5em solid #6c757d;
  border-bottom: 1.5em solid transparent;
  background-color: transparent;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 12;
}

.steps a:first-child {
  border-radius: 0.5rem 0rem 0rem 0.5rem;
}
.steps a:last-child {
  border-radius: 0rem 0.5rem 0.5rem 0rem;
}
.steps a:last-child::after {
  display: none;
}

.steps a[current] {
  background-color: #212529;
}
.steps a[current]::after {
  border-left-color: #212529;
}
.steps a[current] span {
  opacity: 1;
}

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

.event {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.event:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 40, 98, 0.2);
  border-color: rgba(34, 49, 130, 0.3);
}

.event .cover {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event:hover .cover img {
  transform: scale(1.1);
}

.event .content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event h5 {
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event .content span {
  color: #666 !important;
  font-size: 0.95rem;
  font-weight: 500;
}

.event-date {
  color: #223182 !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.event-date i {
  margin-right: 0.35rem;
  opacity: 0.9;
}

/* External event badge – white background and text/icon in brand blue */
.event-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #223182;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.event-badge-external {
  background: #fff;
  color: #223182;
}

.event-badge i {
  font-size: 0.8rem;
  color: #223182;
}

.event-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1.15rem;
  color: #223182;
  background: #fff;
  border: 2px solid #223182;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.event-order-btn:hover {
  background: #223182;
  color: #fff;
  box-shadow: 0 2px 8px rgba(34, 49, 130, 0.3);
}

.event-order-btn i {
  font-size: 1.15rem;
}

.event-coming-soon {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6c757d;
  font-style: italic;
}

.event-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.event-price-row p {
  margin: 0;
  color: #223182 !important;
  font-size: 1.1rem;
  font-weight: 700;
}

.event .content p {
  color: #223182 !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 0;
}

#ticket_table tr {
  vertical-align: middle;
}

#loading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  background: linear-gradient(135deg, rgba(0, 40, 98, 0.95) 0%, rgba(26, 61, 122, 0.95) 100%);
  backdrop-filter: blur(10px);
  color: #fff;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#loading-wrapper img {
  width: 120px;
  height: 120px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Modern form inputs */
.form-control {
  border-radius: 0.5rem;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #223182;
  box-shadow: 0 0 0 0.2rem rgba(34, 49, 130, 0.15);
  outline: none;
}

.form-control:disabled {
  background-color: #f8f9fa;
  opacity: 0.7;
}

/* Modern buttons */
.btn {
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.btn-dark {
  background: linear-gradient(135deg, #223182 0%, #2a3884 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 49, 130, 0.3);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #2a3884 0%, #3345a0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 49, 130, 0.4);
}

.btn-dark:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
}

/* Step content headings */
.step-content h2 {
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #223182 0%, #2a3884 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form labels */
.col-form-label {
  font-weight: 600;
  color: #495057;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Information section – modern layout */
.info-step-title {
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #223182 0%, #2a3884 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container for information and cart steps */
.step-inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.info-form {
  width: 100%;
}

.info-event-card {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(34, 49, 130, 0.12);
  border-left: 4px solid #223182;
  border-radius: 0.75rem;
  padding: 1.75rem 2rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 8px rgba(34, 49, 130, 0.06);
}


.info-event-title {
  color: #0f172a !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(34, 49, 130, 0.12);
}

.info-event-description {
  color: #475569 !important;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.info-event-description p {
  margin: 0 0 0.75rem 0;
  color: inherit !important;
}

.info-event-description p:last-child {
  margin-bottom: 0;
}

.info-event-description ul,
.info-event-description ol {
  margin: 0.5rem 0 0.75rem 1.5rem;
  padding: 0;
  color: inherit !important;
}

.info-event-description li {
  margin-bottom: 0.35rem;
  color: inherit !important;
}

.info-fields {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.info-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.info-input {
  max-width: 100%;
  width: 100%;
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-input:focus {
  border-color: #223182;
  box-shadow: 0 0 0 3px rgba(34, 49, 130, 0.12);
  outline: none;
}

.info-input--readonly {
  background: #f8fafc;
  color: #223182 !important;
  font-weight: 600;
  cursor: default;
}

.info-actions {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.info-actions .btn {
  min-width: 140px;
}

@media (max-width: 767px) {
  .header {
    height: inherit;
  }
  .logo {
    position: relative;
  }
  .logo img {
    height: 40px;
  }
  
  .events-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .event {
    flex-direction: column;
  }

  .event .cover {
    height: 180px;
  }

  .event .content {
    padding: 1.25rem;
  }

  .event .content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .event .content span,
  .event .content p {
    font-size: 0.9rem;
  }
  
  .step-content h2 {
    font-size: 1.5rem;
  }

  .info-event-card {
    padding: 1.25rem 1.5rem;
  }

  .info-event-title {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .info-event-description {
    font-size: 0.9375rem;
  }
}

/* Validation styles */
.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.is-invalid:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

#validation_errors {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border: 2px solid #dc3545;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

#validation_errors ul {
  margin: 0;
  padding-left: 1.5rem;
}

#validation_errors li {
  color: #dc3545 !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

#validation_errors li:last-child {
  margin-bottom: 0;
}

/* Compact table styles */
.table-sm th,
.table-sm td {
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
}

.table-sm .btn {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
}

/* Cart table specific styling */

#ticket_table {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#ticket_table th,
#ticket_table td {
  color: #333;
  border: none;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 1.25rem;
  vertical-align: middle;
  transition: background-color 0.2s ease;
}

#ticket_table thead th {
  background: linear-gradient(135deg, #223182 0%, #2a3884 100%);
  border: none;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 1.25rem 1.5rem;
}

#ticket_table .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  background-color: #dc3545;
  color: white;
}

#ticket_table .btn:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

#ticket_table tbody tr {
  transition: all 0.2s ease;
}

#ticket_table tbody tr:hover {
  background-color: #f8f9fa;
}

/* Table horizontal scroll */
.table-responsive,
.cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#ticket_table {
  font-size: 1rem;
  margin-bottom: 0;
  min-width: 480px;
  width: 100%;
}

/* Cart page – modern layout */
.cart-step-title {
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #223182 0%, #2a3884 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-wrap {
  width: 100%;
  max-width: 900px;
}

.cart-table-wrap {
  background: #fff;
  border: 1px solid rgba(34, 49, 130, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(34, 49, 130, 0.08);
  margin-bottom: 1.5rem;
}

.cart-table-wrap #ticket_table {
  border: none;
  box-shadow: none;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.cart-actions .btn {
  min-width: 160px;
}

/* Payment section – same style as information/cart */
.payment-step-title {
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #223182 0%, #2a3884 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-form {
  width: 100%;
}

.payment-fields {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.payment-validation {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.payment-total {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(34, 49, 130, 0.06) 0%, rgba(42, 56, 132, 0.04) 100%);
  border: 1px solid rgba(34, 49, 130, 0.12);
  border-radius: 0.75rem;
}

.payment-total-label {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
}

.payment-total-value {
  font-weight: 700;
  color: #223182 !important;
  font-size: 1.35rem;
}

.payment-paypal {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.payment-actions {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.payment-actions .btn {
  min-width: 160px;
}

/* Breadcrumb stepper – modern step indicator */
.breadcrumb-stepper {
  margin: 0 0 2rem 0;
}

.breadcrumb-steps {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 40, 98, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(34, 49, 130, 0.12);
  overflow: hidden;
}

#breadcrumb .breadcrumb-step,
#breadcrumb li {
  flex: 1;
  position: relative;
  min-width: 0;
}

#breadcrumb .breadcrumb-step a,
#breadcrumb li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: #5a6c7d;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 4.5rem;
  box-sizing: border-box;
}

#breadcrumb .breadcrumb-step a:hover,
#breadcrumb li a:hover {
  color: #223182;
  background: rgba(34, 49, 130, 0.06);
}

#breadcrumb .breadcrumb-step.active a,
#breadcrumb li.active a {
  color: #223182;
  background: linear-gradient(135deg, rgba(34, 49, 130, 0.08) 0%, rgba(42, 56, 132, 0.06) 100%);
}

#breadcrumb .breadcrumb-step.active a:hover,
#breadcrumb li.active a:hover {
  background: linear-gradient(135deg, rgba(34, 49, 130, 0.12) 0%, rgba(42, 56, 132, 0.08) 100%);
}

/* Connector line between steps */
.step-connector {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, transparent, #e2e8f0 15%, #e2e8f0 85%, transparent);
  z-index: 1;
  pointer-events: none;
}

#breadcrumb .breadcrumb-step.active .step-connector,
#breadcrumb li.active + li .step-connector {
  background: linear-gradient(to bottom, transparent, rgba(34, 49, 130, 0.25) 15%, rgba(34, 49, 130, 0.25) 85%, transparent);
}

/* Step icon – larger, prominent */
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(34, 49, 130, 0.08);
  color: #64748b;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

#breadcrumb .breadcrumb-step.active .step-icon,
#breadcrumb li.active .step-icon {
  background: rgba(34, 49, 130, 0.15);
  color: #223182;
}

.step-icon i {
  font-size: 1.5rem;
}

.step-text {
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsor-slider {
  display: flex;
}

.swiper-slide {
  width: 150px;
  height: 150px;
}

.ubc-container {
  max-width: 1240px;
  padding: 8px 16px;
}

/* Additional modern enhancements */
.container {
  padding: 2rem 1rem;
}

#main_wrapper .container-fluid {
  padding: 2rem;
}

@media (max-width: 576px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  #main_wrapper .container-fluid {
    padding: 0.5rem;
  }
}

@media (min-width: 577px) and (max-width: 767px) {
  #main_wrapper .container-fluid {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  #main_wrapper .container-fluid {
    padding: 2rem;
  }
}

/* Select dropdown styling */
select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Price display styling */
#info_price,
#total_price {
  font-weight: 700;
  color: #223182 !important;
  font-size: 1.25rem;
}

/* Receipt page styling */
.step-content[step="receipt"] {
  text-align: center;
}

.step-content[step="receipt"] img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.step-content[step="receipt"] h5 {
  color: #1a1a1a !important;
  font-size: 1.25rem;
  line-height: 1.6;
}

.step-content[step="receipt"] table {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .breadcrumb-steps {
    flex-direction: column;
    border-radius: 1rem;
  }

  #breadcrumb .breadcrumb-step,
  #breadcrumb li {
    flex: none;
    border-bottom: 1px solid rgba(34, 49, 130, 0.08);
  }

  #breadcrumb .breadcrumb-step:last-child,
  #breadcrumb li:last-child {
    border-bottom: none;
  }

  #breadcrumb .breadcrumb-step a,
  #breadcrumb li a {
    min-height: 3.5rem;
    padding: 0.875rem 1rem;
  }

  .step-connector {
    display: none;
  }

  .step-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .step-icon i {
    font-size: 1.25rem;
  }

  .step-text {
    font-size: 0.875rem;
    white-space: normal;
  }

  .events-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Small screens: breadcrumb icon-only + tighter events section */
@media (max-width: 576px) {
  .events-wrapper {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .event .content {
    padding: 1rem;
  }

  .event .cover {
    height: 160px;
  }

  .breadcrumb-steps {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  #breadcrumb .breadcrumb-step,
  #breadcrumb li {
    flex: 1 1 0;
    min-width: 0;
    border-bottom: none;
    border-right: 1px solid rgba(34, 49, 130, 0.08);
  }

  #breadcrumb .breadcrumb-step:last-child,
  #breadcrumb li:last-child {
    border-right: none;
  }

  #breadcrumb .breadcrumb-step a,
  #breadcrumb li a {
    min-height: 3rem;
    padding: 0.65rem 0.5rem;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .step-text {
    display: none;
  }

  .step-icon {
    margin-right: 0;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
  }

  .step-icon i {
    font-size: 1.1rem;
  }
}

@media print {
  button,
  a {
    display: none !important;
  }
}
