:root {
  --bleu: #0568C3;
  --orange: #F37423;
  --fond: #f0f6fc;
}

.profile-container {
  max-width: 520px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #012a4f9d;
  margin-top: 20px;
  margin-bottom: 20%;
}

.profile-container h2 {
  text-align: center;
  color: var(--bleu);
  margin-bottom: 25px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 15px;
}

input[readonly] {
  background-color: #e0e0e0;
  color: #666;
  cursor: not-allowed;
}

.send_msg{
  margin-top: 20px;
}

/* display des deux blocs */
.historique{
  display: none;
}

.profile-container {
  display: block;
}


/************* style du menu profil **************/
.menu-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  max-width: 300px;
  margin-top: 2%;
  margin-left: 8%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-button {
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.menu-link {
  display: inline-block;
  width: 90%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.menu-button:hover,
.menu-link:hover {
  background-color: #e6f0ff;
}

@media(max-width: 1068px){
  .menu-container{
    margin-top : 50px;
    margin-right: auto;
    margin-left: auto;
  }
}