/* cross-project-enroll.css — cross-project-enroll.js'nin "siteye katıl"
   yapışkan banner'ı + onay modalı. Daha önce JS içinde inline style
   olarak yazılan tüm kurallar buraya birebir taşındı (aynı renk/ölçü). */

#cpe-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #1a56db;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

.cpe-msg {
  flex: 1;
}

.cpe-join-btn {
  background: #fff;
  color: #1a56db;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.cpe-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cpe-modal {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  width: min(400px, 90vw);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

.cpe-modal-title {
  margin: 0 0 16px;
  font-size: 18px;
}

.cpe-field {
  margin-bottom: 10px;
}

.cpe-field-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 2px;
}

.cpe-field-value {
  font-size: 14px;
  color: #111;
}

.cpe-confirm-btn {
  width: 100%;
  background: #1a56db;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.cpe-err {
  color: #b91c1c;
  margin-top: 8px;
  font-size: 13px;
}
