.screen {
  min-height: 70vh;
}

form {
  display: flex;
  justify-content: center;
}

.batch {
  width: 100px;
  height: 35px;
  border: 2px solid;
  margin: 0 10px;
  border-radius: 4px;
  text-align: center;
}

.filters {
  margin-top: 5vh;
  text-align: center;
}

label {
  font-size: larger;
}

.submit {
  background-color: #1a265c;
  border: 0;
  color: aliceblue;
  padding: 4px 10px;
  border-radius: 3px;

}

.submit:hover {
  background-color: #1a266d;
}

#userList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.user-detail {
  flex: 1 0 100%;
  /* Default to full width */
  margin: 1.5%;
  /* Optional for some spacing between items */
  text-align: center;
  /* Center the content */
  max-width: 300px;
  max-height: 200px;
  margin-top: 40px;
}

.user-profile {
  width: 100%;
}

.user-profile .photo {
  width: 100px;
  /* Adjust as needed */
  height: 100px;
  /* Adjust as needed */
  object-fit: cover;
  /* This will ensure the aspect ratio of the image is maintained */
  border-radius: 50%;
  /* This will make the image round */
  margin: 0 auto;
  /* This will center the image horizontally */
  box-shadow: 0 0 5px;
}

.details {
  padding: 10px 20px 20px 20px;
  display: flex;
  text-align: center;
  flex-direction: column;
}