.naemt-mlf {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 22rem;
  width: 100%;
  margin-bottom: 2rem;
}

.naemt-mlf__label {
  font-weight: 600;
}

.naemt-mlf__select {
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.naemt-mlf__message {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.naemt-mlf--loading .naemt-mlf__select,
.naemt-mlf-loop-loading {
  opacity: 0.55;
  pointer-events: none;
}

.naemt-mlf-hidden {
  display: none !important;
}

.naemt-mlf-fallback-layout .bde-loop {
  display: grid !important;
  grid-template-columns: repeat(var(--naemt-mlf-columns, 4), minmax(0, 1fr));
  gap: var(--naemt-mlf-gap, 1.5rem);
  height: auto !important;
  position: relative !important;
}

.naemt-mlf-fallback-layout .bde-loop-item {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 100% !important;
  transform: none !important;
}

@media (max-width: 1024px) {
  .naemt-mlf-fallback-layout .bde-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .naemt-mlf-fallback-layout .bde-loop {
    grid-template-columns: 1fr;
  }
}
