.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 16px;
  background: oklch(0.2 0.03 205);
  color: oklch(0.97 0.01 175);
  box-shadow: 0 18px 40px rgba(12, 34, 38, 0.28);
  font-family: Archivo, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner p { margin: 0 0 12px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-accept, .cookie-reject {
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.cookie-accept {
  border: 0;
  background: oklch(0.97 0.01 175);
  color: oklch(0.2 0.03 205);
}
.cookie-reject {
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: inherit;
}

#feature-request-dialog.graphai-dialog {
  width: min(1560px, calc(100vw - 32px));
  max-width: min(1560px, calc(100vw - 32px));
  height: min(960px, calc(100vh - 32px));
  min-height: min(720px, calc(100vh - 32px));
  max-height: calc(100vh - 24px);
  padding: 28px 32px;
  box-sizing: border-box;
}
#feature-request-dialog #feature-request {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  height: calc(100% - 2.5rem);
  min-height: 0;
  min-width: 0;
  margin-top: 12px;
}
#feature-request-dialog #feature-request input,
#feature-request-dialog #feature-request textarea,
#feature-request-dialog #feature-request button {
  font-size: 1.05rem;
  padding: 12px 14px;
}
#feature-request-dialog #feature-request textarea {
  min-height: 24rem;
  height: 100%;
  resize: vertical;
}
