.race-pwa-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(17, 19, 22, 0.96);
  border-top: 1px solid rgba(244, 245, 246, 0.12);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
}
.race-pwa-banner[hidden] {
  display: none !important;
}
.race-pwa-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.race-pwa-banner__text strong {
  color: #f4f5f6;
  font-size: 0.95rem;
}
.race-pwa-banner__text span {
  color: rgba(244, 245, 246, 0.62);
  font-size: 0.8rem;
}
.race-pwa-banner__actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .race-pwa-banner {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .race-pwa-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .race-pwa-banner__actions {
    justify-content: flex-end;
  }
}
