/* Consent Checkbox Styles - Ultra-Compatible */
.consent-wrapper {
  margin: 16px 0;
  padding: 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.consent-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: checkbox;
}

.consent-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.consent-link {
  color: #0066cc;
  text-decoration: underline;
}

.consent-input:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .consent-text {
    font-size: 13px;
  }
  .consent-input {
    width: 16px;
    height: 16px;
  }
}
