/* wall-makeup.css */

.wall-makeup-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.wall-controls {
  background: #f8f9fb;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.wall-controls h2 {
  margin: 0 0 12px;
  color: #1a1a2e;
  font-size: 1.4rem;
}
.preset-selector {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.preset-selector label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-disabled);
}
.preset-selector select {
  margin-top: 4px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
  min-width: 260px;
}
.btn-primary {
  padding: 10px 20px;
  background: #2563eb;
  color: var(--text-1);
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #1d4ed8; }

.preset-description {
  color: var(--text-4);
  font-size: 0.85rem;
  margin: 8px 0 0;
  font-style: italic;
}
.wall-assembly-block {
  position: relative;
  margin-bottom: 24px;
}
.btn-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 10;
}
.btn-remove:hover {
  background: #fecaca;
}

/* Category grouping colors in table */
.asm-table tr[data-category="Framing"] td:first-child {
  border-left: 3px solid #3b82f6;
}
.asm-table tr[data-category="Insulation"] td:first-child {
  border-left: 3px solid #f59e0b;
}
.asm-table tr[data-category="Drywall"] td:first-child {
  border-left: 3px solid #10b981;
}
.asm-table tr[data-category="Fasteners"] td:first-child {
  border-left: 3px solid #6b7280;
}