/* Training page styles */
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  min-width: 1200px;
}

/* Training header */
.training-header {
  text-align: center;
  margin-bottom: 20px;
}

.training-header h2 {
  font-family: 'Arial', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: bold;
}

.training-header p {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Training columns layout */
.training-columns {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}

.training-column {
  flex: 1;
  min-width: 350px;
  max-width: 350px;
}

.column-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.2;
  text-align: center;
}

.column-description {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
}

/* Training event cards */
.training-event {
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  text-align: center;
}

.ve-event {
  background-color: #67a97b;
}

.advanced-event {
  background-color: #B8C0D0;
}

.rep-event {
  background-color: #A4C868;
}

.event-day {
  font-size: 22px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: bold;
}

.event-date {
  font-size: 20px;
  margin-bottom: 16px;
}

.rsvp-button {
  background-color: white;
  color: black;
  padding: 16px 24px;
  text-transform: uppercase;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.rsvp-button:hover {
  background-color: #f0f0f0;
}

/* Form section */
.form-section {
  font-weight: lighter;
  background-color: #C0CBD3;
  width: 1180px;
  min-width: 1180px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-top: 20px;
}

.form-title {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 12px;
  font-family: 'MinervaModern', 'Arial', sans-serif;
  font-weight: normal;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.4);
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.training-form {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}

.form-field {
  margin-bottom: 12px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
}

.required-text {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 8px;
  border: 2px solid black !important;
  box-sizing: border-box;
}

.radio-group {
  display: flex;
  align-items: center;
}

.radio-group label {
  margin-right: 16px;
}

.radio-options {
  display: flex;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
}

.radio-option input {
  margin-right: 8px;
  width: auto;
}

.submit-container {
  text-align: center;
}

.submit-button {
  background-color: white;
  color: black;
  padding: 8px 48px;
  text-transform: uppercase;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #f0f0f0;
}

.error-message {
  color: #d9534f;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Fix for text styling */
.text-green-500 {
  color: #28a745;
}

.text-red-500 {
  color: #dc3545;
}

.border-red-500 {
  border-color: #dc3545 !important;
}

/* Responsive adjustments (limited since the design is fixed width) */
@media (max-width: 1200px) {
  .container, 
  .form-section {
    width: 100%;
    min-width: 100%;
    padding: 0 15px;
    overflow-x: auto;
  }

  .training-columns {
    flex-wrap: wrap;
  }

  .training-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}