.ii-consent-root {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.42);
  font-family: Arial, Helvetica, sans-serif;
  color: #111827;
  box-sizing: border-box;
}

.ii-consent-root *,
.ii-consent-root *::before,
.ii-consent-root *::after {
  box-sizing: border-box;
}

.ii-consent-panel {
  width: min(760px, 100%);
  max-height: min(88vh, 780px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.26);
  padding: 18px;
}

.ii-consent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ii-consent-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.ii-consent-body {
  margin: 10px 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

.ii-consent-policy {
  display: inline-block;
  margin: 2px 0 14px;
  font-size: 14px;
  color: #1d4ed8;
  text-decoration: underline;
}

.ii-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ii-consent-btn {
  appearance: none;
  border: 1px solid #334155;
  background: #ffffff;
  color: #111827;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
}

.ii-consent-btn:hover,
.ii-consent-btn:focus {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.ii-consent-primary {
  background: #1f2937;
  color: #ffffff;
}

.ii-consent-details {
  margin-top: 16px;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}

.ii-consent-details h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}

.ii-consent-hidden {
  display: none;
}

.ii-consent-category {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
}

.ii-consent-category input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.ii-consent-category input:disabled {
  cursor: not-allowed;
}

.ii-consent-category-copy {
  display: grid;
  gap: 3px;
}

.ii-consent-category-copy strong {
  font-size: 14px;
  line-height: 1.25;
}

.ii-consent-category-copy span {
  font-size: 13px;
  line-height: 1.35;
  color: #4b5563;
}

.ii-consent-save {
  margin-top: 12px;
}

[dir="rtl"] .ii-consent-category {
  grid-template-columns: 1fr 24px;
}

[dir="rtl"] .ii-consent-category input {
  order: 2;
}

@media (max-width: 560px) {
  .ii-consent-root {
    padding: 0;
    align-items: flex-end;
  }

  .ii-consent-panel {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
    padding: 16px;
  }

  .ii-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ii-consent-btn {
    width: 100%;
  }
}
