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: 0;
  padding: 0;
  margin-bottom: 60px;
}

h1 {
  font-size: 1.9rem;
}

h2 {
  font-size: 1.5rem;
}

.navbar-layout {
    position: relative;
    min-height: 80px;
}

.navbar-row {
    min-height: 80px;
    position: relative;
}

.navbar-left {
    z-index: 3;
}

.navbar-center {
    z-index: 1;
    pointer-events: auto;
}

.navbar-right {
    z-index: 3;
    white-space: nowrap;
}

.banner-image {
    width: 343px;
    height: 80px;
    display: block;
}

.banner-image-mobile {
    width: 343px;
    height: 80px;
    max-width: 100%;
    display: block;
}

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

/* Recipe list row formatting */
.recipe-row {
  background-color: var(--bs-light);
  transition: background-color .15s ease;
  border: 1px solid var(--bs-border-color);
}

.recipe-row:hover {
  background-color: var(--bs-secondary-bg);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

a.footer-link{
  text-decoration: none;
}

a.footer-link:hover{
  text-decoration: underline; 
}