/* Language card: reuse same class to keep identical styling */
#active-languages-list .easymenu-currency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f8fa;
  border-radius: 11px;
  padding: 13px 16px;
  margin-bottom: 12px;
  border: 1px solid #edf0f4;
  font-size: 15.6px;
  font-weight: 500;
  box-shadow: 0 1px 7px rgba(60, 60, 60, 0.03);
  transition: background .16s, box-shadow .16s;
  cursor: move;
  /* drag cursor */
}

#active-languages-list .easymenu-currency-row:hover {
  background: #f1f6fd;
  box-shadow: 0 2px 14px rgba(40, 110, 210, 0.08);
}

/* Remove button: use global outline style */
#active-languages-list .easymenu-btn-outline {}

/* Dashed placeholder while dragging */
.sortable-placeholder {
  border: 2px dashed #c9d2e0;
  background: #fafdff;
  border-radius: 10px;
  height: 58px;
  /* approx. card height */
  margin: 12px 0;
  box-shadow: inset 0 0 0 2px rgba(10, 85, 168, .06);
}

/* Fade-out effect on delete */
.easymenu-row-fade-out {
  animation: emFade .23s forwards;
}

@keyframes emFade {
  to {
    opacity: 0;
    transform: translateX(-18px);
  }
}

/* Select2 aligned with .easymenu-select */
.select2-container--default .select2-selection--single {
  border: 1.5px solid #c9d2e0;
  border-radius: 7px;
  height: 39px;
  background: #fafdff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 37px;
  padding-left: 12px;
  color: #232a3e;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 37px;
  right: 6px;
}

/* inline status next to the save button */
.em-inline-status {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
}