


.driver-popover {
  background-color: var(--foregroundColor);
  color: var(--textColor);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 280px;
  transition: opacity 0.2s ease;
}

.driver-popover * {
    font-family: "Noto Sans", sans-serif!important;
}

.driver-popover-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.driver-popover-description {
  line-height: 1.5;
  font-weight: 500;
  padding: 1rem 0.5rem;
}

.driver-popover-footer button {
    background-color: var(--streakColor);
    padding: 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid var(--lightBorderColor);
    border-bottom-width: 3px;
    color: white;
    text-shadow: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
}

.driver-popover-footer button:hover {
    background-color: var(--streakColor);
}

.driver-popover-footer button:active {
    border-bottom-width: 1px;
    margin-top: 2px;
}