:root {
  color-scheme: dark;
  background: #0e0f10;
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#sportsbook-shell,
#sportsbook-target,
#sportsbook-target > div {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100dvh;
  overflow-x: clip;
  background: #0e0f10;
}

#sportsbook-shell {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
}

#sportsbook-target {
  min-height: 100dvh;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

#sportsbook-status {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgb(255 255 255 / 72%);
  background: #0e0f10;
  font-size: 14px;
}

#sportsbook-status.error {
  color: #ff6b6b;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgb(255 255 255 / 12%);
  border-top-color: #0056ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
