/**
 * Beam ConsentBanner — matches React ConsentBanner component
 * .consent-overlay > .consent-modal
 */

.consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.consent-modal {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 580px;
  width: calc(100% - 32px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--color-charcoal, #06303a);
  font-family: "Nunito", Helvetica, Arial, sans-serif;
}

.consent-modal p {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.consent-modal a {
  color: var(--color-pink, #ff2069);
  font-weight: 700;
}

.consent-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.consent-actions button {
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 12px;
  font-weight: var(--font-bold, 700);
  font-size: 15px;
  transition: transform 0.2s ease;
}

.consent-actions button:hover {
  transform: translateY(-2px);
}

.accept-btn {
  background-color: var(--color-pink, #ff2069);
  color: #ffffff;
}

.decline-btn {
  background-color: transparent;
  color: var(--color-charcoal, #06303a);
  border: 1px solid #ccc;
}
