.roster {
  list-style-type: none;
  display: flex;
  align-items: flex-start; /* Align items at the start of the container */
  justify-content: space-between; /* Distribute items evenly along the main axis */
  flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
}

.STB, .CPR {
  flex: 1;
  margin: 10px; /* Add some margin between items */
}

#STB, #CPR {
  list-style-type: none;
}

#STB{
  margin-top: 10px;
}

#CPR{
  margin-top: 5px;
  margin-right: 30px;
}

.listing{
  border: solid 3px black;
  border-radius: 5px;
  padding-bottom: 10px;
  background-color: #e9e9e9;
  margin-bottom: 30px;
}

.signUp {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #3498db;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.signUp:hover {
  background-color: rgb(251, 99, 14);
}

.signUpLink {
  text-decoration: none;
}

.photoButton {
  width: 100%; /* Make the image button width 100% */
  max-width: 250px; /* Limit maximum width of the image button */
}

@media screen and (max-width: 768px) {
  .STB, .CPR {
    max-width: calc(100% - 20px); /* Set max-width to full container width minus margins */
  }
}
