/* ✅ Force scrollbar visible for modal bodies */
.modal-body {
  scrollbar-width: thin !important; /* Firefox */
  -ms-overflow-style: auto !important; /* Edge/IE */
  overflow-y: auto !important; /* always allow vertical scroll */
}

/* ✅ Chrome, Edge, Safari custom scrollbar look */
.modal-body::-webkit-scrollbar {
  width: 8px !important;
}

.modal-body::-webkit-scrollbar-track {
  background: #0b1a2b !important;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #00a2ff !important;
  border-radius: 10px !important;
  border: 2px solid #0b1a2b !important;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background-color: #66ccff !important;
}
