html,
body,
#root {
  height: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  overflow: auto;
  background: var(--bg, #101116);
  color: var(--ink, #e3e2e8);
  -webkit-font-smoothing: antialiased;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: var(--bg, #101116);
}

#root > div {
  flex: 1;
  width: 100%;
  min-height: 100vh;
  background: var(--bg, #101116) !important;
}

nav[role='tablist'],
[aria-label='Tab bar'] {
  display: none !important;
}

a {
  text-decoration: none;
}

[data-focusable='true']:focus-visible {
  outline: 2px solid #b3c5ff;
  outline-offset: 2px;
}

@media (hover: hover) {
  .milongas-nav-link:hover {
    background: rgba(179, 197, 255, 0.1) !important;
  }

  .milongas-table-row:hover {
    background: rgba(179, 197, 255, 0.06) !important;
  }
}

.milongas-seek-track {
  position: relative;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.milongas-seek-track.milongas-seek-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.milongas-seek-fill {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background: var(--gold, #b3c5ff);
  pointer-events: none;
}

.milongas-seek-thumb {
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 6px;
  background: var(--ink, #e3e2e8);
  top: 50%;
  margin-top: -6px;
  pointer-events: none;
}
