.ht-slider-control-wrapper,
.ht-testimonials-control-wrapper {
  border: 1px solid #ccd0d4;
  padding: 12px;
  background: #fff;
}

.ht-slider-list,
.ht-testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.ht-slider-card,
.ht-testimonials-card {
  border: 1px solid #dcdcde;
  padding: 12px;
  background: #fdfdfd;
}

.ht-slider-card__header,
.ht-testimonials-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ht-slider-card__actions .button,
.ht-testimonials-card__actions .button {
  margin-right: 4px;
}

.ht-slider-card__image,
.ht-testimonials-card__image {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ht-slider-card__image-preview,
.ht-testimonials-card__image-preview {
  width: 80px;
  height: 80px;
  background-color: #f0f0f1;
  background-size: cover;
  background-position: center;
  border: 1px solid #ccd0d4;
}

.ht-slider-card__body label,
.ht-testimonials-card__body label {
  display: block;
  margin-bottom: 8px;
}

.ht-multi-select-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ht-multi-select-control select {
    min-height: 140px;
}

.ht-multi-select-control select option[selected] {
    font-weight: bold;
    background-color: #e0f7fa;
}

/* Section animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

[data-animate].animate-in {
    opacity: 1;
}


