smart-grid {
  width: 100%;
  height: 600px;
  --smart-font-size: 20px;
}

.smart-data-view-header-button.smart-data-view-custom-button:focus,
.smart-data-view-header-button.smart-data-view-custom-button,
.smart-data-view-header-button.smart-data-view-custom-button:hover {
  background: transparent;
}

.smart-slider:focus .smart-thumb:before,
.smart-slider .smart-thumb[hover]:before {
  transform: scale(1.5);
  animation: slider-thumb-effect 1s infinite;
  animation-delay: 0.1s;
}
@keyframes slider-thumb-effect {
  0%, 100% {
    transform: scale(2);
  }
  50% {
    transform: scale(1.75);
  }
}

.customer-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.customer-cell .tag {
  width: 20px;
  height: 20px;
  font-size:10px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  margin-left:10px;
}

.customer-cell .info {
  display: flex;
  flex-direction: column;
}

.city-link {
  display: flex;
  color: inherit;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}