.user-details {
  max-width: 100%;
  margin: auto;
  border: 1px solid #009444;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  text-align: center;
}

.user-image-asset-profil {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.user-image-asset-profil img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.contact-details .title {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}

.contact-details .description {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.accordion-button {
  background-color: #f9f9f9;
  border: 1px solid  #009444 !important;
  border-left: 8px solid  #009444 !important;
  color:  #009444 !important;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  width: 100%;
  border-radius: 6px;
}

.accordion-button:not(.collapsed) {
  color: #007bff;
  background-color: #e9ecef;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-item {
  border: none;
  .accordion-button:not(.collapsed)::after{
    display: none !important;
  }
  .accordion-button::after {
    display: none;
  }
}

.accordion-header {
  margin-bottom: 5px;
}

.accordion-body {
  font-size: 14px;
  color: #555;
  border: none;
  padding: 10px;
}

.badge-country {
  display: flex;
  align-items: center;
  justify-content: left;
}

.accordion-collapse{
  border: none !important;
}

.flag-country span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #C1F9D9;
  border-radius: 5px;
  font-size: 14px;
  color: #009444;

}



.badge-media a {
  margin: 0 5px;
  display: inline-block;
}

.badge-media img {
  border-radius: 50%;
  transition: transform 0.2s;
}

.badge-media img:hover {
  transform: scale(1.1);
}

.btn-add-wish{
  display: flex;
  align-items: center;
  border: 1px solid #009444;
  color: #009444;
  background-color: transparent;
  padding: 5px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-add-wish img {
    margin-right: 5px;

}


.btn-remove-wish{
  display: flex;
  align-items: center;
  border: 2px solid green;
  color: white;
  background-color: green;
  border-radius: 10px;
  padding: 5px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-remove-wish img {
  margin-right: 5px;

}



