/* Minimal styles for NRD Data Access Admin */

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* Hide scrollbars but keep scrolling functionality */
.modal-scroll {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.modal-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Highlight permanente para tarjetas de modelos cuando se hace focus */
.model-card-highlight {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3);
  background-color: #fee2e2 !important;
}

/* Animación inicial al hacer focus */
.model-card-highlight-enter {
  animation: highlight-pulse 0.5s ease-in-out;
}

@keyframes highlight-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.2);
  }
  100% {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3);
  }
}

