#danceForm {
  background-color: white;
  margin: 50px auto;
  padding: 40px;
  width: 100%;
  min-width: 300px;
  border-radius: 0.8em;
}

.club-info {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.import-area {
  background: #e9f5ff;
  padding: 15px;
  border: 2px dashed #007bff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.participant-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.row-num {
  min-width: 25px;
  font-weight: bold;
  color: #666;
}
button {
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 4px;
  border: none;
  background: #007bff;
  color: white;
}
button:hover {
  background: #0056b3;
}
.btn-remove {
  background: #dc3545;
}
.btn-add {
  background: #28a745;
  margin-top: 10px;
}
textarea {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  resize: none;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #04aa6d;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04aa6d;
}

select.invalid {
  border: 1px solid #ff4d4d;
  background-color: #fff2f2;
}
