html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: #0F192B;
  color: #ffffff;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

/* Blazor specific styles */
#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.loading-progress {
  position: relative;
  display: block;
  width: 8rem;
  border: 0.125rem solid currentColor;
  padding: 2rem;
}

.loading-progress:after {
  content: "";
  display: inline-block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-progress:not(:required):after {
  content: "";
}

.loading-progress:not(:required) {
  overflow: hidden;
  height: 1.125rem;
  background-color: lightgray;
  padding: 0;
}

.loading-progress:not(:required):after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 1.125rem 1.125rem;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 1.125rem 1.125rem;
  -webkit-animation: loading-bar 1s infinite linear;
  -moz-animation: loading-bar 1s infinite linear;
  -ms-animation: loading-bar 1s infinite linear;
  -o-animation: loading-bar 1s infinite linear;
  animation: loading-bar 1s infinite linear;
}

@-webkit-keyframes loading-bar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1.125rem 0;
  }
}

@-moz-keyframes loading-bar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1.125rem 0;
  }
}

@-ms-keyframes loading-bar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1.125rem 0;
  }
}

@-o-keyframes loading-bar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1.125rem 0;
  }
}

@keyframes loading-bar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1.125rem 0;
  }
} 