.toast-container-positioned {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  width: 90%;
  max-width: 500px;
}

.hint-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hints-list {
  background: #7cc9f460;

  min-height: 250px;
  max-height: 250px;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  list-style: none;
}

.hints-list li:nth-child(odd) {
  background-color: #f0f0f0e6 !important;
}

.hints-list li:nth-child(even) {
  background-color: #ffffffe6 !important;
}

.alert {
  top: 0;
  left: 0;
  right: 0;
}

.two-line-span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
