#ccp-banner {
  position: fixed;
  left: 0; right: 0;
  z-index: 9999;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  box-sizing: border-box;
  padding: 1rem;
}
#ccp-banner.ccp-bottom { bottom: 0; }
#ccp-banner.ccp-top { top: 0; }

.ccp-panel {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  padding: 1rem;
  display: grid;
  gap: .75rem;
}

.ccp-title { font-weight: 700; font-size: 1.1rem; margin: 0; }
.ccp-text { margin: 0; line-height: 1.5; }

.ccp-actions {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem;
}
.ccp-btn {
  border: 0; border-radius: 10px; padding: .6rem .9rem; cursor: pointer;
  font-weight: 600;
}

.ccp-link { text-decoration: underline; }

.ccp-modal {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.4); z-index: 10000;
}
.ccp-modal.open { display: flex; }
.ccp-modal .ccp-dialog {
  width: min(680px, 92vw);
  background: var(--ccp-bg);
  color: var(--ccp-fg);
  border-radius: 12px; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.ccp-switches { display: grid; gap: .5rem; margin-top: .5rem; }
.ccp-row { display: flex; align-items: center; justify-content: space-between; padding: .5rem .25rem; }

.is-hidden { display: none !important; }
