#widget{
	text-align: center;
}
#user_pub_name{
	font-weight: bold !important;
	color: #333333 !important;
}

/****style affichage liste de commentaires**************/
/* Reset liste */
.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Chaque commentaire */
.comment-item {
  margin-bottom: 20px;
}

/* Carte commentaire */
.comment-card {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  align-items: flex-start;
}

/* Avatar */
.comment-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* Contenu */
.comment-content {
  flex: 1;
}

/* Header */
.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.comment-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.comment-date {
  font-size: 12px;
  color: #888;
}

/* Texte */
.comment-text {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}

/* Actions */
.comment-actions {
  display: flex;
  gap: 15px;
  font-size: 13px;
}

.comment-actions a {
  color: #007bff;
  text-decoration: none;
}

.comment-actions a:hover {
  text-decoration: underline;
}

/* Icône delete */
.delete-icon {
  color: red;
}
#exampleModal{
  margin-top: 80px!important;
}

#reponses_commentaires{
  padding-left: 40px;
}
#reponses_commentaires .comment-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
#commentaire_principal{
  margin-bottom: 20px!important;
}
/* PAR DÉFAUT (mobile-first)  DESIGN PLUS DE PUBLICATION DE L'AUTEUR DANS ADS-DETAILS*/
.show-desktop {
  display: none;
}

.show-mobile {
  display: block;
}

/* GRAND ÉCRAN */
@media (min-width: 992px) {
  .show-desktop {
    display: block;
  }

  .show-mobile {
    display: none;
  }
}