/**
 * RFP Creation Wizard stylesheet for AI Compliance Bot
 * Wizard forms, schedule inputs, commercial context, dropzone.
 */

.creation-card {
  padding: 2rem;
  border-radius: 1.35rem;
  background: var(--product-surface);
  border: 1px solid var(--product-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--product-ink);
  margin-bottom: 0.35rem;
}

.form-section-desc {
  font-size: 0.85rem;
  color: var(--product-muted);
  margin-bottom: 1.25rem;
}

/* File Upload Dropzone */
.file-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 1.5rem;
  border: 2px dashed var(--product-border);
  border-radius: 1.15rem;
  background: var(--product-soft);
  cursor: pointer;
  text-align: center;
  transition: all var(--motion-micro) var(--ease-micro);
  position: relative;
}

.file-dropzone:hover, .file-dropzone.dragover {
  border-color: var(--product-accent);
  background: var(--glass-accent-wash);
}

.file-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-dropzone__icon {
  font-size: 2.5rem;
  color: var(--product-accent);
}

.file-dropzone__text {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--product-ink);
}

.file-dropzone__hint {
  font-size: 0.78rem;
  color: var(--product-muted);
  max-width: 32rem;
}

.uploaded-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.uploaded-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-radius: 0.65rem;
  background: var(--product-surface);
  border: 1px solid var(--product-border);
  font-size: 0.85rem;
}

.uploaded-file-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--product-ink);
}

.uploaded-file-remove {
  background: none;
  border: none;
  color: var(--product-danger);
  cursor: pointer;
  font-size: 1.1rem;
}

/* Parser Readiness Indicators */
.parser-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.parser-status-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--product-soft);
  border: 1px solid var(--product-border);
}
