/* ---- Quick Build Panel ---- */
.qb-panel {
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}
.qb-header {
  margin-bottom: 14px;
}
.qb-title {
  font-size: 16px;
  font-weight: 700;
  color: #c4b5fd;
  margin: 0 0 4px;
  letter-spacing: 0.03em;
}
.qb-subtitle {
  font-size: 12px;
  color: #94a3b8;
  margin: 0 0 10px;
}
.qb-search {
  width: 100%;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.qb-search:focus {
  border-color: rgba(139, 92, 246, 0.4);
}
.qb-search::placeholder {
  color: #64748b;
}

/* Grid */
.qb-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

/* Card */
.qb-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.qb-card:hover {
  border-color: rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.04);
}
.qb-card.qb-seasonal {
  border-color: rgba(34, 197, 94, 0.2);
}
.qb-card.qb-seasonal:hover {
  border-color: rgba(34, 197, 94, 0.4);
}

.qb-card-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.qb-card-body {
  flex: 1;
  min-width: 0;
}
.qb-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.qb-card-desc {
  font-size: 11px;
  color: #94a3b8;
  margin: 2px 0 4px;
}
.qb-card-bots {
  font-size: 10px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qb-card-meta {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.qb-card-count, .qb-card-price {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}
.qb-card-season {
  font-size: 9px;
  color: #86efac;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Add Team button */
.qb-card-btn {
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
}
.qb-card-btn:hover {
  background: rgba(139, 92, 246, 0.25);
  transform: scale(1.02);
}
.qb-card-btn-done {
  background: rgba(34, 197, 94, 0.2) !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: #86efac !important;
}

/* Mobile */
@media (max-width: 640px) {
  .qb-card { padding: 10px 12px; }
  .qb-card-icon { font-size: 22px; width: 32px; }
  .qb-card-bots { display: none; }
}
