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;
}
*/

/* Lightweight, consistent “page close” look */
.btn-close-page {
  --rv-border: var(--bs-border-color, #dee2e6);
  --rv-text: var(--bs-secondary-color, #6c757d);
  --rv-hover-bg: rgba(108,117,125,.08);
  font-size: .875rem; /* small */
  padding: .375rem .75rem; /* matches Bootstrap sm */
  color: var(--rv-text);
  background: transparent;
  border: 1px solid var(--rv-border);
  border-radius: .5rem; /* match your rounded style */
  text-decoration: none;
  line-height: 1.25;
}

  .btn-close-page:hover {
    background: var(--rv-hover-bg);
    text-decoration: none;
    color: var(--rv-text);
  }

  .btn-close-page:focus-visible {
    outline: 2px solid var(--bs-primary, #0d6efd);
    outline-offset: 2px;
  }

.close-bar {
  display: flex;
  justify-content: end;
  margin-bottom: 1rem;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Page title */
/* Page title frame */
.rv-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: #eaf2ff; /* light blue */
  border: 1px solid #d7e6ff; /* soft blue border */
  border-radius: .75rem;
}

/* Image sizing/tidy edges */
.rv-rocket-img {
  width: 40px; /* keep in sync with your markup if you set width/height there */
  height: 40px;
  object-fit: contain;
  display: block;
  border-radius: .375rem; /* optional */
}

/* Title text */
.rv-title-text h1,
.rv-title-text .h1,
.rv-title-text h2,
.rv-title-text .h2 {
  margin: 0;
  color: #0b4ea2;
}

.rv-title-sub {
  margin-top: .125rem;
  color: #4b6da7;
  font-size: .95rem;
}

/* If you ever switch to inline SVG rocket, uncomment this block (no nested comments!)
.rv-title-rocket {
  width: 40px; height: 40px; flex: 0 0 40px;
  display: grid; place-items: center;
  color: var(--bs-primary, #0d6efd);
}
.rv-title-rocket svg {
  width: 28px; height: 28px;
  transform: rotate(24deg);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.12));
}
*/

