 #cc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#cc-modal {
  background: #fff;
  width: 420px;
  max-width: 95%;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

#cc-modal h2 {
  margin-top: 0;
}

.cc-buttons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.cc-btn {
  flex: 1;
  padding: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

.cc-accept { background:#4CAF50; color:white; }
.cc-reject { background:#f44336; color:white; }
.cc-settings { background:#555; color:white; }

#cc-settings-link {
  position: fixed;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  z-index: 9998;
  opacity: 0.85;
}

#cc-settings-link:hover {
  opacity: 1;
  text-decoration: underline;
}

#cc-settings-link img {
  width: 14px;
  height: 14px;
}