 body {
      background-color: #ffffff;
      font-family: 'Segoe UI', sans-serif;
    }

   .comment-box {
      background: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
      padding: 20px;
      margin-bottom: 20px;
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .comment-box.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .star-rating i {
      color: #ccc;
      cursor: pointer;
      font-size: 1.2rem;
      transition: color 0.2s;
      margin-right: 4px;
    }

    .star-rating i.active {
      color: gold;
    }

    .like-btn, .dislike-btn {
      cursor: pointer;
      font-size: 1.2rem;
      margin-right: 15px;
      -webkit-user-select: none;
      user-select: none;
    }

    .like-btn.active {
      color: green;
    }

    .dislike-btn.active {
      color: red;
    }

    .filter-select {
      max-width: 220px;
    }

    /* Pour que le pseudo/email soit plus lisible */
    .comment-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      font-weight: 600;
      font-size: 0.9rem;
      color: #333;
    }

    .comment-message {
      font-size: 1rem;
      line-height: 1.4;
      margin-bottom: 12px;
      color: #444;
      white-space: pre-wrap; /* respecte les sauts de ligne */
    }

    .date-text {
      font-size: 0.8rem;
      color: #777;
    }