.scrolling-container {
  display: inline-block;
  position: relative;
  max-width: 500px;
  width: 80%;
  overflow: hidden;
  vertical-align: middle;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.modal-body-scrollable {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 6px;
}

.modal-body-scrollable::-webkit-scrollbar {
  width: 6px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.scrollable-table-wrapper {
    max-height: 60vh;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.scrollable-table-wrapper::-webkit-scrollbar {
    width: 6px;
}

.scrollable-table-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

