*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}

nav.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(53, 52, 52);
    padding: 1%;
}

h2.logo {
    font-size: x-large;
    color: white;
    font-family: ui-monospace;
}

input.search-box {
    padding: 10px;
    color:black;
    border: 2px solid black;
    border-radius: 15px;
    background-color: whitesmoke;
    font-size: medium;
}

.main{
    display: flex;
}

.sidebar{
    width: 15%;
    border: 2px solid black;
}

.container {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    /* justify-content: space-evenly; */
}

.card {
    padding: 5px;
    border-radius: 10px;
    width: calc(25% - 20px);
    margin: 10px;
    box-shadow: 1px 1px 10px rgba(17, 16, 16, 0.25);
}

.card-img {
    width: 100%;
    border-radius: 10px;
}

.mov-title{
    font-size: 16px;
    font-weight: 700;
    color: black;
}

.lan-rating {
    display: flex;
    justify-content: space-between;
    align-items:center; 
}

.rating {
   
    color: #333;
    padding: 0.25em;
    border-radius: 0.25em;
    text-align: center;
    display: inline-block;
}

.orange{
    background-color: #FFC107;
}

.green{
    background-color:#4CC035;
}
.red{
    background-color: #E42535;
}

/*---------- Side bar -------- */

.category-container {
    padding: 10px 0 0 10px;
    font-size: 16px;
}
#buy-button{
    background-color: blue;
    margin: 20px;
    border-radius: 10%;
    width: 100px;
    height: 50px;
}
.tag {
    background: rgb(100, 204, 167);
    margin: 5px;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
}

.tag.highlighted{
    background-color: rgb(107, 184, 236);
  }

  /* /modal css/ */

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: rgb(163, 137, 89);
    margin: auto;
    padding: 20px;
    border: 1px solid #65834d;
    width: 60%;
    
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* modal css end */
  .movie-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .movie-card img{
    width: 100%;
    height: 50%;
  }
  .movie-details{
  padding-left: 20px;
  }
  
  .Booking{
    justify-content: center;
      justify-items: center;
      margin: 0 auto;
      display: grid;
      
      width: 100%;
  }