.seating-chart {
  background-color: #1f2937;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.screen {
  background-color: #4b5563;
  color: #fff;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 0.8em;
  max-width: 900px;
  min-width: 900px;
  margin-bottom: 30px;
}

.row {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  position: relative;
}

/* Special styling for rows 13-16 */

.row[data-row="14"],
.row[data-row="15"],
.row[data-row="16"],
.row[data-row="17"] {
  justify-content: space-between;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.section {
  display: flex;
  gap: 4px;
}

.section.left {
  justify-content: flex-start;
}

.section.middle {
  justify-content: center;
  flex-grow: 1;
  margin: 0 40px;
}

.section.right {
  justify-content: flex-end;
} 



.seat[data-row="2"][data-seat="28"] {
  margin-left: -20px;
}
.seat[data-row="4"][data-seat="29"] {
  margin-left: -20px;
}
.seat[data-row="6"][data-seat="30"] {
  margin-left: -20px;
}
.seat[data-row="10"][data-seat="26"] {
  margin-left: -20px;
}
.seat[data-row="12"][data-seat="26"] {
  margin-left: -20px;
}

.seat[data-row="13"][data-seat="33"] {
  margin-left: 0px;
}

.seat[data-row="15"][data-seat="33"] {
  margin-left: 2px;
}

.seat {
  width: 25px;
  height: 25px;
  margin: 2px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Special styling for handicap seats */
.row[data-row="8"] .seat {
  width: 35px;
  height: 35px;
}

.row[data-row="8"] .seat i {
  font-size: 16px;
  color: #fff;
}

.seat:not(.booked):hover {
  opacity: 0.8;
}

.seat-label {
  color: #9ca3af;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 25px;
  font-size: 0.7em;
  position: absolute;
  left: -30px;
}

.available {
  background-color: #6b7280;
}

.selected {
  background-color: #3b82f6;
}

.selected-seats  {
  color: #fff;
}
.booked {
  background-color: #ef4444;
  cursor: not-allowed;
}

.legend {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
  font-size: 0.8em;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-color {
  width: 25px;
  height: 25px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legend-color.handicap {
  width: 35px;
  height: 35px;
  background-color: #6b7280;
}

.legend-color.handicap i {
  font-size: 16px;
  color: #fff;
}

.selection-summary {
  background-color: #1f2937;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  margin: 40px auto;
}

.selected-seats {
  margin-bottom: 10px;
}

.continue-btn {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
}

.continue-btn:hover {
  background-color: #2563eb;
}
