.container {
  flex-direction: column;
  align-items: center;
  padding: 70px 30px 30px 30px;
}


.main-box {
	background-color: white;
	padding:7px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	max-width: 1000px;
	width: 100%;
}

.participant-box,
.subordinate-box {
  background-color: #fbfafc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  max-width: 1000px;
  width: 100%;
  border: 2px solid #ddd; /* Thicker black border */
  color:  #616263 ;
}

.participant-box p,
.subordinate-box p {
  white-space: wrap; /* Prevent text wrapping */
  text-overflow: ellipsis; /* Display ellipsis (...) when text overflows */
  color:  #616263 ;
  word-wrap: break-word;
}

.participant-box h2,
.subordinate-box h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

.subordinate-item {
  padding: 10px 0;
  border-bottom: 2px solid #94979a; /* Add border-bottom */
}

.subordinate-item:last-child {
  border-bottom: none; /* Remove border-bottom from the last item */
}

.button-box {
  display: flex;
  gap: 20px;
}


.payment-box {
  background-color: #fbfafc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  max-width: 1000px;
  width: 100%;
  border: 2px solid #ddd; /* Thicker black border */
  color:  #616263 ;
}

.payment-method {
  margin-bottom: 20px;
}

.payment-method h3 {
  margin-top: 0;
}

.payment-method input[type="radio"] {
  margin-right: 10px;
}

.payment-logo {
	width: 50px; /* Adjust width as needed */
	height: auto; /* Maintain aspect ratio */
}
