.create-project-container {
  background-color: #eee;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 2rem;
}

.project-form-container {
  background-color: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.is-locked, .is-locked * {
  cursor: not-allowed !important;
}

/* 2. The Input: Kill the 'Live' signals */
.is-locked .form-control[readonly] {
  background-color: #f8f9fa !important; /* Standard enterprise light-grey */
  border-color: #dee2e6 !important;
  color: #6c757d !important;
  caret-color: transparent !important; /* Hides blinking cursor */
  user-select: none; /* Prevents text highlighting */
  pointer-events: none; /* Block clicks/focus on the input itself */
}

/* 3. The Badge: Professional Pill Style */
.lock-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #e9ecef;
  border: 1px solid var(--border-color);
  color: var(--theme-color);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 4;
}

/* Hide the duplicate lock icon inside the label if using the badge */
.field-lock-indicator {
  display: none;
}