/**
 * Extracted Inline Styles
 * Styles extracted from inline style attributes for CSP compliance
 */

/* Cookie Banner Styles */
#consent-popup.hidden {
  pointer-events: none;
}

#consent-popup:not(.hidden) {
  pointer-events: all;
}

.cookie-form-check-inline {
  padding-left: 2em;
}

.cookie-btn-no-transform {
  text-transform: none;
}

/* Common Utility Styles */
.step-number-circle {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.step-content-min-height {
  min-height: 80px;
}

.sticky-top-offset {
  top: 2rem;
}

.icon-size-24 {
  width: 24px;
  height: 24px;
}

.alert-hidden {
  display: none;
}

.thank-you-message-hidden {
  display: none;
}

/* Grid gap utility */
.grid-gap-20 {
  gap: 20px;
}

/* Padding utilities */
.padding-top-em {
  padding-top: 0.5em;
}

.padding-left-em {
  padding-left: 0.5em;
}

/* Border utilities */
.border-bottom-red {
  border-bottom: 3px solid var(--tone-red);
}

/* Background image utilities */
.bg-image-cover {
  background-size: cover;
  background-position: center;
}

/* Text utilities */
.text-word-break {
  word-break: break-all;
}

