
.melodaire-profile {
    background-color: #E6D4B4;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .melodaire-profile img {
    max-width: 30%;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }

  h1 {
    color: #B0754A;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .note {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
  }

  .price {
    font-weight: bold;
    color: #B0754A;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .description {
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .traits {
    background: #FAF8F2;
    border: 1px solid #A7C4A0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
  }

  .traits ul {
    padding-left: 20px;
  }

  .traits li {
    margin-bottom: 10px;
  }

  .btn-adopter {
    display: inline-block;
    background-color: #FFFFFF;
    border: 2px solid #B0754A;
    color: #B0754A;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: 20%;
  }

  .btn-adopter:hover {
    background-color: #B0754A;
    color: #FFFFFF;
  }

  a.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #B0754A;
    text-decoration: none;
    font-weight: 600;
  }

  a.back-link:hover {
    text-decoration: underline;
  }