@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");

* {
  box-sizing: border-box;
}


.movie-container {
  margin: 20px 0;
}

.movie-container select {
  background-color: #fff;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  margin-left: 10px;
  padding: 5px 15px 5px 15px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.container {
  perspective: 1000px;
  margin-bottom: 30px;
}

.seat {
  background-color: #444451;
  height: 3vw;
  width: 3vw;
  margin: 3px;
  font-size: 5vw;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* ✅ Flexbox to center the text */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
}


.seat.selected {
  background-color: green;
}

.seat.sold {
  background-color: #fff;
}



.seat:not(.sold):hover {
  cursor: pointer;
  transform: scale(1.2);
}

.showcase .seat:not(.sold):hover {
  cursor: default;
  transform: scale(1);
}
   .seat.reserved {
        background-color: #f0ad4e;
        border: 1px solid #e98e00;
    }

    .seat.sold {
        background-color: #d9534f;
        border: 1px solid #c9302c;
    }

    .seat.selected {
        background-color: #5bc0de;
    }
   

.showcase {
  background: rgba(0, 0, 0, 0.1);

  
}



.showcase li small {
  margin-left: 2px;
}

.row {
  display: flex;
}

.screen {
  background-color: #571f1f;
  height: 120px;
  width: 60%;
  margin: 15px 0;
  transform: rotateX(-48deg);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}

p.text{
    margin: 5px 0;
}

p.text span{
    color: rgb(158, 248, 158);
}



/* Tweak for small screens */
@media (max-width: 600px) {
  .seat {
    height: 5vw;
    width: 5vw;
    font-size: 6vw;
    font-size: 2vw;
    color: white;
  }

  .screen {
    background-color: #571f1f;
    height: 120px;
    width: 70%;
    margin: 15px 0;
    transform: rotateX(-48deg);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
  }


}