/* Simple modal styles for JWT login */
#cp-jwt-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
}
#cp-jwt-modal .cp-jwt-modal-inner {
  background: white;
  padding: 20px;
  border-radius: 6px;
  width: 320px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
#cp-jwt-modal input { display:block; width:100%; margin:8px 0; padding:8px; }
#cp-jwt-modal .cp-jwt-actions { text-align:right; }
#cp-jwt-modal .cp-jwt-msg { min-height:18px; margin-bottom:8px; color:#b00; }

/* Styles for Bootstrap modal when injected by plugin (theme-like dark styling) */
#cpLoginModal .modal-content {
  background: rgb(0,2,29);
  color: #fff;
  border-radius: 0 !important;
  border: 1px solid rgba(255,255,255,0.06);
}
#cpLoginModal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
#cpLoginModal .modal-body label {
  color: rgba(255,255,255,0.9);
}
#cpLoginModal .form-control {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 !important;
}
#cpLoginModal .btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
  border-radius: 0 !important;
}
#cpLoginModal .alert-danger {
  background: rgba(255,0,0,0.08);
  color: #ffc9c9;
  border: 1px solid rgba(255,0,0,0.08);
}
