table tr>td,
table tr>th {
  padding: 10px;
  border: 1px solid #333;
}

.outer-container {
  font-family: sans-serif;
  background: #054589;
  padding: 25px 0 50px;
  margin: 0;
  font-size: 14px;
  color: #494949;
  min-height: 100vh;
}

#content {
  border-radius: 4px;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  background: white;
  padding: 30px 40px;
}

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

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

/* Margin helpers */
.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.logo-img {
  height: 85px;
  display: inline-block;
  vertical-align: middle;
}

.ticket-title {
  font-family: Artifika;
  font-size: 28px;
  color: #772e0b;
  display: inline-block;
  vertical-align: middle;
}

/* Form Section Cards */
.form-section {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}

.form-section-heading {
  font-size: 18px;
  font-weight: 700;
  color: #054589;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #054589;
}

.form-row {
  display: grid;
  grid-template-columns: max-content auto;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.select-width {
  width: 150px;
}

/* Event Schedule Timeline */
.event-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-schedule li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.event-schedule li:last-child {
  border-bottom: none;
}

.schedule-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  padding-top: 2px;
}

.schedule-desc {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

/* Inclusions Checklist */
.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusions-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  line-height: 1.5;
}

.inclusions-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: #16a34a;
  font-weight: 700;
  font-size: 16px;
}

/* Ticket Type Radio Cards */
.ticket-type-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ticket-type-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.ticket-type-option:hover {
  border-color: #4881cf;
  background: #f0f5ff;
}

.ticket-type-option.selected {
  border-color: #054589;
  background: #e8f0fe;
  box-shadow: 0 0 0 3px rgba(5, 69, 137, 0.15);
}

.ticket-type-option input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #054589;
}

.ticket-type-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-type-content strong {
  font-size: 15px;
  color: #1f2937;
}

.ticket-type-content span {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.ticket-type-error {
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

/* Ticket Tables */
.ticket-section {
  margin-bottom: 24px;
}

.ticket-table {
  width: 100%;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.ticket-table-1 {
  background: #eaf1dd;
}

.ticket-table-2 {
  background: #fff9d6;
}

.ticket-heading {
  font-size: 19px;
  text-align: center;
  margin: 0;
  padding: 5px 0;
  font-weight: 600;
}

.input-group {
  display: grid;
  grid-template-columns: 150px max-content;
  align-items: center;
  grid-gap: 10px;
}

.policy-container {
  margin: 30px 0 0;
  text-align: left;
}

.policy-heading {
  font-size: 17px;
  font-weight: 600;
}

/* Order Summary */
.order-summary-table {
  width: 100%;
  border-collapse: collapse;
}

.order-summary-table td {
  padding: 14px 10px;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.order-summary-table .total-row td {
  border-bottom: none;
  background: #e8f0fe;
  font-size: 16px;
}

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

.discount-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.discount-input-row input[type="text"] {
  max-width: 200px;
}

.btn-apply-discount,
.btn-remove-discount {
  padding: 6px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-apply-discount {
  background: #4881cf;
  color: #fff;
}

.btn-apply-discount:hover {
  background: #3567b0;
}

.btn-remove-discount {
  background: #dc2626;
  color: #fff;
}

.btn-remove-discount:hover {
  background: #b91c1c;
}

.discount-message {
  margin: 6px 0 0;
  font-size: 13px;
  min-height: 18px;
}

.discount-success {
  color: #16a34a;
  font-weight: 600;
}

.discount-error {
  color: #dc2626;
  font-weight: 600;
}

/* Button */
.btn-booknow {
  font-family: Artifika;
  font-size: 24px;
  color: #fff;
  padding: 10px 50px;
  border-radius: 6px;
  border: 1px solid #4881cf;
  background: #4881cf;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-booknow:hover {
  background: #3567b0;
  box-shadow: 0 2px 8px rgba(5, 69, 137, 0.3);
}

.btn-booknow:active {
  background: #054589;
}

.text-red {
  color: red;
}

input[type='number'] {
  width: 100% !important;
  border-radius: 7px !important;
  text-align: center;
}

@media (max-width: 768px) {
  .outer-container {
    
    padding: 10px 0 20px;
  }

  #content {
    padding: 20px;
  }

  .form-section {
    padding: 16px;
    margin-bottom: 16px;
  }

  .form-section-heading {
    font-size: 16px;
  }

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

  .select-width {
    width: 100%;
  }

  .ticket-type-group {
    grid-template-columns: 1fr;
  }

  .btn-booknow {
    padding: 7.5px 20px;
  }

  .ticket-title {
    font-size: 24px;
  }

  .ticket-heading {
    font-size: 16px;
  }

  .policy-heading {
    font-size: 14px;
  }

  .ticket-table {
    display: block;
  }

  .ticket-table tr {
    display: block;
  }

  .ticket-table tr>th {
    display: block;
    margin-bottom: 20px;
    border: 0;
  }

  .ticket-table tr>th h3 {
    font-size: 18px;
  }

  .ticket-table tr>td {
    display: block;
    border: 0;
    padding: 0;
  }

  .input-group {
    grid-template-columns: auto max-content;
    margin-bottom: 20px;
  }
}
