/* Plan Config Info */
.plan-info-container {
  margin-bottom: 2rem;
  animation: fadeIn 0.5s ease-out;
}

.plan-config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  background: #ffffff; /* Changed to white for cleaner look */
  padding: 0; /* Remove padding from container, let items breathe */
  border: none; /* Remove border */
  border-radius: 0;
}

.config-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.config-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.config-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.config-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

/* Icon Colors */
.icon-asr { background: #e0e7ff; color: #4f46e5; } /* Indigo */
.icon-llm { background: #f0fdf4; color: #16a34a; } /* Green */
.icon-tts { background: #fff1f2; color: #e11d48; } /* Rose */
.icon-rag { background: #fff7ed; color: #ea580c; } /* Orange */
.icon-intent { background: #f0f9ff; color: #0284c7; } /* Sky */

.config-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.config-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.config-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}
