.open-bill-table {
  max-height: 30vh;
  overflow-y: scroll;
}

.customer-table{
  max-height: 30vh;
  overflow-y: scroll;
}

.card-black {
  background: #000000;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, var(--primary), #000000);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, var(--primary), #000000);
  background: linear-gradient(to right, var(--primary), #000000);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.card-black::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  /* Cover the right side */
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 1px, transparent 2px);
  opacity: 0.8;
  /* Adjust the lightness */
  pointer-events: none;
  /* Ensure it doesn't interfere with content */
}

.card-black p{
  font-size: 0.8rem;
}


.staff-item {
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: center;
  min-width: 70px;
}


.staff-img {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
}


