.bg-fc {
  background-color: #fcfcfc;
}

.badge-warning-custom {
  background-color: #ffc107;
  color: #212529;
  font-weight: 700;
}

/* ==========================================
5. FORM BUILDER STYLES
========================================== */
.array-container {
  border-left: 3px solid #1e9ff2;
  background-color: #fcfcfc;
  padding: 15px;
  border-radius: 0.25rem;
  margin-bottom: 20px;
}

.array-item {
  position: relative;
  padding: 20px 15px 5px 15px;
  border: 1px dashed #d1d5ea;
  border-radius: 0.25rem;
  background: #fff;
  margin-bottom: 15px;
}

.btn-remove-row {
  position: absolute;
  top: -12px;
  right: -12px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  line-height: 26px;
  text-align: center;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-section {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* --- Upload Zone --- */
label {
  font-weight: 600;
}

.required {
  color: red;
}
.upload-box {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #fff;
  position: relative;
}

.upload-box:hover {
  border-color: #0d6efd;
  background-color: #f8fbff;
}

.upload-box i {
  font-size: 24px;
  color: #6c757d;
  margin-bottom: 10px;
}

.upload-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.upload-box span {
  font-size: 12px;
  color: #999;
  display: block;
  margin-top: 5px;
}

.upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
/* --- Inputs --- */
.form-control {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 12px;
  font-size: 14px;
}

.form-control:focus {
  background-color: #fff;
  box-shadow: none;
  border-color: #0d6efd;
}