.ii-consent-root {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  pointer-events: none;
  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 {
  display: flex;
  align-items: center;
  width: min(620px, 100%);
  max-height: min(70vh, 520px);
  overflow: auto;
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 10px 28px 20px rgba(15, 23, 42, 0.18);
  padding: 12px 14px;
  border-radius: 15px;
}

.ii-consent-panel.ii-consent-panel-details {
  display: block;
}

.ii-consent-content {
  flex: 1 1 auto;
  min-width: 0;
}

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

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

.ii-consent-body {
  margin: 6px 0 5px;
  font-size: 13px;
  line-height: 1.35;
}

.ii-consent-policy {
  display: inline;
  margin: 0;
  font-size: inherit;
  color: #1d4ed8;
  text-decoration: underline;
  white-space: nowrap;
}

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

.ii-consent-btn {
  appearance: none;
  border: 1px solid #334155;
  background: #fff;
  color: #111827;
  min-height: 34px;
  padding: 7px 12px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
}

.ii-consent-btn:hover,
.ii-consent-btn:focus {
  opacity: 0.8;
}

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

.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 {
    position: relative;
    inset: auto;
    clear: both;
    padding: 0;
    align-items: flex-end;
  }

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

  .ii-consent-header h2 {
    font-size: 16px;
  }

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

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