body {
  margin: 20px;
}

h1 {
  text-align: center;
}

 .search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 32%;
    width: 35%
  }

  .search-container input,
  .search-container label,
  .search-container select {
    margin-bottom: 10px;
    margin: 10px;
    max-width:400px;
    align-items:center;
  }
.search-container button{
  margin-bottom: 15px;
  border-radius:5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding-left:10px;
  padding-right: 10px;
}

.directors-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#directorsList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

#directorsList li {
  background-color: #fff;
  width: calc((100% - 60px) / 4); 
  min-width: 255px;
  margin-bottom: 20px;
  margin-right: 6.5px;
  margin-left: 6.5px;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center; /* Center content horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
}

#directorsList li img {
  width: 130px; /* Adjust image width as needed */
  height: 160px; /* Adjust image height as needed */
  /*border-radius: 100%; /* Create a circular image effect */
  object-fit: cover; /* Ensure the image covers the circular container */
  padding-bottom: 10px;
  padding-top: 15px;
}

.getTickets {
  background-color:#ff9841;
  border-radius:25px;
  border:1px solid #ff9841;
  display:inline-block;
  color:#000000;
  font-size:16px;
  padding:10px 20px;
  text-shadow:0px 1px 0px #2f6627;
}
.getTickets:hover {
  background-color:#F6B26B;
  color:#000000;

}
.getTickets:active {
  position:relative;top:1px;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* White background with transparency */
  z-index: 1000; /* Ensure the popup appears on top */
  justify-content: center;
  align-items: center;
}
#directorsList li:hover {
  background-color: rgba(255, 206, 0, 0.7); /* White background with transparency */
  cursor: pointer;
}

/* .popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 80%; 
  max-height: 80%;
  overflow: auto; 
} */
select:invalid { 
  color: gray; 
}
 @media (max-width: 768px) {
  .popup {
    width: 100%; /* Adjust the width as needed for mobile */
    height: 100%; /* Adjust the height as needed for mobile */
  }  
  .modern-popup {width:70%;max-height: 60%;}
  .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%; /* Allow the content to take full width */
    max-height: 600px; /* Allow the content to take full height */
    overflow: auto;
  }
  
  /* Additional styles to make content responsive */
  .popup-body {
    max-width:50%;
    max-height:75%;
    flex-direction: column; /* Stack content vertically on mobile */
    align-items: center; /* Center content horizontally on mobile */
    text-align: center; /* Center text on mobile */
    padding-right: 0;
  }
  .profile-image img {
    width: 100%; /* Adjust image width to fit smaller screens */
    max-height: 50%; /* Adjust image height for smaller screens */
  }
  .profile-details {
    margin-top: 15px; /* Add space between image and details */
  }
