/* Styles généraux */

/* Message de bienvenue */
.welcome-message {
  background-color: #2d3142;
  border-radius: 8px;
  padding: 30px;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
}

.welcome-message h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.welcome-message p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.welcome-message a {
  color: #3c7aff;
  text-decoration: none;
  font-weight: 500;
}

.welcome-message a:hover {
  text-decoration: underline;
}

/* Trainer section */
.trainer-section {
  background-color: #2d3142;
  border-radius: 8px;
  padding: 20px;
  color: white;
  margin-bottom: 20px;
}

.trainer-name {
  font-size: 22px;
  margin-bottom: 15px;
}

.trainer-avatar {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.trainer-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #3c7aff;
}

.trainer-label {
  font-size: 18px;
  font-weight: 500;
}