/* Custom CSS overrides */

/* Hide Select2 clear buttons - Higher specificity to override CDN styles */
body .select2-container--default .select2-selection--single .select2-selection__clear,
body .select2-container--classic .select2-selection--single .select2-selection__clear,
body .select2-container--default .select2-selection--multiple .select2-selection__clear,
body .select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none !important;
  visibility: hidden !important;
}

/* Blog Comment Delete Button */
.blog-details-comment-inner {
  position: relative;
}

.blog-comment-delete {
  position: absolute;
  top: 10px;
  right: 10px;
}

.comment-delete-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-delete-btn:hover {
  background: #fee;
  color: #e74c3c;
  transform: scale(1.1);
}

.comment-delete-btn svg {
  width: 18px;
  height: 18px;
}