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

/* Cookie-Banner (Dashboard) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(13, 19, 33, 0.96);
  color: #dde2f6;
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(251, 187, 85, 0.2);
}

.cookie-banner.hidden {
  display: none !important;
}

.cookie-banner h5 {
  color: #fbbb55;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .cookie-banner {
    padding: 1rem 0;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}