.sleek-comments {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.comment-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 4px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
  gap: 12px;
}

.comment-item:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comment-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid #e9ecef;
  flex-shrink: 0;
}

.comment-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #495057;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}

.comment-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6c757d;
  min-width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.comment-rating {
  font-size: 0.8rem;
  flex-shrink: 0;
  color: #ffc107;
}