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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Restored jumbotron layout */
.jumbotron {
  position: relative;
  background-image: url('/ui/img/ullevi.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 360px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.jumbotron::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.jumbotron .container-fluid {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.jumbotron .btn-outline-secondary { color: #fff; border-color: rgba(255,255,255,0.85); }
.jumbotron .btn-outline-secondary:hover { color: #212529; background-color: #fff; border-color: #fff; }
.row.align-items-md-stretch > [class^='col-'] > .rounded-3 { box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.12); }
@media (max-width: 576px) { .jumbotron { min-height: 260px; } }