/* Cookie / privacy notice banner — added 2026-07-01 per client privacy request.
   Colors match the Carolina QuickCare brand palette:
   brand red #E31837, darker red #AA1229, white #ffffff. */
#cqc-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  background: #E31837;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#cqc-cookie-banner.is-visible {
  transform: translateY(0);
}
#cqc-cookie-banner p {
  margin: 0;
  max-width: 900px;
  flex: 1 1 320px;
}
#cqc-cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}
#cqc-cookie-banner a:hover,
#cqc-cookie-banner a:focus {
  text-decoration: none;
}
#cqc-cookie-banner .cqc-cookie-actions {
  flex: 0 0 auto;
}
#cqc-cookie-banner button {
  cursor: pointer;
  border: 2px solid #ffffff;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  background: #ffffff;
  color: #E31837;
  transition: background 0.2s ease, color 0.2s ease;
}
#cqc-cookie-banner button:hover,
#cqc-cookie-banner button:focus {
  background: #AA1229;
  border-color: #ffffff;
  color: #ffffff;
}
@media (max-width: 640px) {
  #cqc-cookie-banner {
    justify-content: flex-start;
    text-align: left;
  }
}
