/* ===== PROCEDURE CARDS ===== */
.supply-container {
  padding: 40px;
  text-align: center;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Card Styling */
.procedure-card {
  
  background-color: #1F2937;
  border: 1px solid #1F2937;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px #22D3EE;
}

/* Title & Description */
.procedure-title {
  color: #22D3EE;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.procedure-link {
  color: #22D3EE;
  text-decoration: none;
  transition: color 0.3s ease;
}

.procedure-link:hover {
  color: #bdadb2;
}

.procedure-description {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Button */
.btn-procedure {
  width: 100%;
  background: linear-gradient(90deg, #22D3EE, #0f5964);

  color: #F3F4F6;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s;
}

.btn-procedure:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Form Wrapper */
.procedure-form {
  margin-top: 1rem;
}

/* Responsive Text Alignment */
@media (max-width: 576px) {
  .procedure-card {
    text-align: center;
  }
}



/* ===== Form Show (clean, modern) ===== */
.form-show {
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --ring: rgba(124, 58, 237, 0.18);
  --primary: #22D3EE;
}

.form-show {
  background: var(--bg);
  min-height: calc(100vh - 120px);
  padding-bottom: 3rem;
}

.form-show .card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
}

.form-show .hero-card {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(15, 89, 100, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.form-show .empty-state {
  background: linear-gradient(180deg, #fff, #f9fafb);
  border: 1px dashed var(--line);
}

.q-list { grid-template-columns: 1fr; }
@media (min-width: 992px) {
  .q-list { grid-template-columns: 1fr; } /* vertical list keeps focus */
}

.q-card {
  border-radius: 16px;
}
.q-card .card-body { padding: 24px; }

.icon-wrap {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f0f9ff;
  color: var(--primary);
  font-size: 1.2rem;
}

.q-form .form-control,
.q-form .form-select,
.q-form textarea {
  border-radius: 14px;
  border-color: var(--line);
  background: #fbfbfc;
}

.q-form .form-control:focus,
.q-form .form-select:focus {
  box-shadow: 0 0 0 4px var(--ring);
  border-color: transparent;
  background: #fff;
}

.option-field {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.options-container {
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed var(--line);
  background: rgba(34, 211, 238, 0.04);
}

.add-option {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.add-option:hover { color: #0f5964; }

.btn-primary {
  background: linear-gradient(90deg, #22D3EE, #0f5964);
  border: none;
  border-radius: 14px;
  font-weight: 600;
}
.btn-primary:hover { filter: brightness(0.98); }

.btn-outline-danger {
  border-radius: 12px;
}

.badge.text-bg-light {
  background: #f8fafc !important;
  border: 1px solid var(--line);
}

