
.booking-container {
  height: 100%;
  width: 600px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  display: flex;margin: 20px auto;
  flex-direction: column;
  box-shadow: 0 0 10px 2px #dde3e7;
}

.movie-details {
  position: relative;
  height: 150px;
  display: flex;
  width: 100%;
}

.banner {
  width: inherit;
  height: inherit;
  object-fit: cover;
  opacity: 0.6;
  animation-name: move-left;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.movie-name,
.location {
  position: absolute;
  color: white;
  bottom: 25px;
  left: 20px;
  font-size: 20px;
}

.location {
  display: flex;
  align-items: center;
  gap: 5px;
  bottom: 10px;
  font-size: 12px;
}

.seat-details {
  background-color: white;
  padding-top: 10px;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seat-legends {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.seat-legend {
  display: flex;
  align-items: center;
  gap: 5px;
}

.seat-legend > span {
  color: #737c7f;
}

.seat-box {
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(7, 1fr);
}
.seat {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.available {
  color: #0a9b38;
  cursor: pointer;
}
.available:hover {
    color: #e3417a;
    opacity: 0.4;
  }
.booked {
  color: #ced9e2;
  cursor: not-allowed;
}

.selected {
  color: #e3417a;
  cursor: pointer;
}

.seat:nth-child(9n-4) {
  font-size: 12px;
}

.screen {
  height: 50px;
  background: linear-gradient(0deg, #dcf2f4, white);
  position: relative;
}

.view-screen {
  position: absolute;
  bottom: 10px;
  left: 5%;
  width: 90%;
  height: 70px;
  border-bottom: 5px solid;
  border-radius: 0 0 20% 20%;
  border-color: #0e435a;
}
.view-screen > span {
  position: absolute;
  bottom: 5px;
  left: 40%;
  letter-spacing: 1em;
  text-transform: uppercase;
  font-size: 10px;
  color: gray;
}

.booking-details {
  height: 120px;
  background: #e1131a;
  display: flex;
  align-items: center;
}
.detail-names,
.detail-values {
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background-color: #c51117;
  color: white;
  flex: 1;
}
.detail-values {
  background-color: #e1131a;
  flex: 4;
}
.continue {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  height: 40%;
  margin: 5px;
  text-align: center;
  cursor: pointer;
  background: white;
  border-radius: 5px;
  border: none;
  font-size: 15px;
  transition: transform 500ms ease;
}
.continue:hover {
    transform: scale(1.1);
}

@keyframes move-left {
  50% {
    transform: scale(1.05);
  }
}

/*========================== Table Section Start===============================*/

.booking-container-table {
  width: 800px;
}
.booking-container-table2 {
  width: 1000px;
}
.seat-box-new {
  grid-template-rows: repeat(6, 1fr);grid-template-columns: repeat(6, 1fr);
}
.seat-box-new2 {
   display: flex;grid-template-columns: none;grid-template-rows: none;
}

/*========================== Table Section End ===============================*/

@media (max-width: 767px) {
    .booking-container {
        width: 95%;
    }
}