/* /assets/css/edit.css */
#brojilaModal .modal-body { max-height: 70vh; overflow-y: auto; }

.card.ring {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.35), 0 .5rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.card.ring:hover {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5), 0 .5rem 1rem rgba(0, 0, 0, 0.2);
}
.card-highlight {
  outline: 3px solid #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,.25);
  transition: box-shadow .2s ease, outline-color .2s ease;
}
.card-highlight.pulse {
  animation: pulseCard 1s infinite;
}
@keyframes pulseCard {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.01); }
  100% { transform: scale(1); }
}
