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;
}

.cc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: var(--surface-card, #fff);
  border-top: 1px solid var(--border, #e8eaf1);
  box-shadow: var(--shadow-lg, 0 -8px 24px rgba(20, 23, 43, 0.1));
  padding: 1rem 1.25rem;
}

.cc-banner-inner {
  max-width: var(--container-max, 1140px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cc-banner-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted, #6b7088);
  flex: 1 1 320px;
}

.cc-actions {
  display: flex;
  gap: 0.5rem;
  flex: none;
}