/* --- Force banner to be larger and more prominent --- */
.cc-window {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background-color: #444 !important; /* grey background */
  color: #ffffff !important;
  padding: 2rem 1rem !important;     /* more vertical space */
  text-align: center !important;
  font-size: 1.1rem !important;
  line-height: 1.6;
  z-index: 200000 !important;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.4);
}

/* --- Stack buttons vertically --- */
.cc-compliance {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem !important; /* space between buttons */
  margin-top: 1.25rem !important;
}

/* --- General button look --- */
.cc-btn {
  display: inline-block !important;
  width: 220px !important;
  padding: 0.75rem 1rem !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-align: center !important;
}

/* --- Accept = light blue --- */
.cc-btn.cc-allow {
  background-color: #3a9bdc !important;
  color: #ffffff !important;
}
.cc-btn.cc-allow:hover {
  background-color: #007bff !important;
}

/* --- Decline = dark blue --- */
.cc-btn.cc-deny {
  background-color: #001f3f !important;
  color: #ffffff !important;
}
.cc-btn.cc-deny:hover {
  background-color: #003366 !important;
}

/* --- Force Learn More link onto its own line below the message --- */
.cc-message {
  display: block !important;
  margin-bottom: 1rem !important;
}
/* --- Learn More link --- */

.cc-link {
  display: block !important;       /* ensures it appears on its own line */
  margin: 0.75rem auto !important; /* space above/below and centered */
  width: 220px !important;
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  padding: 0.75rem 1rem !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  text-align: center !important;
}
.cc-link:hover {
  background-color: #ffffff !important;
  color: #444 !important;
}

/* Hide Osano's floating "Cookie Policy" reopen tab */
.cc-revoke,
.cc-revoke:hover,
.cc-revoke.cc-bottom,
.cc-revoke.cc-top {
  display: none !important;
}