* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #343a40;
  color: white;
  padding: 10px 20px;
}

.logo h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 8px;
  border: none;
  border-radius: 5px;
}

.search-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 5px;
}

header {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
}

h1 {
  margin-bottom: 10px;
}

/* Banner Section */
.banner {
  background-color: #020202;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.banner-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 18px;
}

/* Date Selection */
.date-selection {
  text-align: center;
  margin: 20px 0;
}

.date-selection h2 {
  margin-bottom: 20px;
}

.date-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.date-btn {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

.date-btn:hover {
  background-color: #218838;
}

.tickets {
  padding: 20px;
  text-align: center;
}

.tickets h2 {
  margin-bottom: 20px;
}

.ticket-card {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
}

.ticket-card img {
  width: 100%; /* Responsive image */
  height: auto;
  border-radius: 5px; /* Slightly rounded corners */
}

.ticket-card h3 {
  margin: 10px 0;
}

.buy-now {
  padding: 10px 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.buy-now:hover {
  background-color: #218838; /* Darker green on hover */
}

/* Progress Bar Styling */
.progress-bar {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  width: 80%;
}

.step {
  text-align: center;
  position: relative;
  width: 100px;
}

.bullet {
  height: 30px;
  width: 30px;
  border: 2px solid #ff0000;
  display: inline-block;
  border-radius: 50%;
  background-color: white;
  line-height: 30px;
  font-weight: bold;
}

.check {
  display: none;
  color: #fff;
}

.step.active .bullet {
  background-color: #ff4422;
  color: white;
}

.step.active .check {
  display: block;
}

.form-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 80%;
  margin-bottom: 30px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

label {
  display: block;
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* Seat Selection */
.stadium {
  display: flex;
  justify-content: space-around;
}

.zone {
  text-align: center;
}

.seat {
  width: 30px;
  height: 30px;
  background-color: #28a745; /* Green for vacant seats */
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.seat:hover {
  opacity: 0.8;
}

.seat.selected {
  background-color: #dc3545; /* Red for reserved seats */
}

footer {
  text-align: center;
  padding: 10px 10px;
  background-color: #007bff;
  color: white;
  width: 100%;
}
.borderbox > * {
  border:1ps solid rgb(133, 133, 133);
}