/* Vue Playground Layout */
.playground {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Showcase Section */
.showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__title {
  font-size: calc(var(--base-font-size, 16px) * 1.125);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.showcase__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.showcase__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.showcase__stack-wide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Select Group */
.select-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.select-group__title {
  font-size: calc(var(--base-font-size, 16px) * 0.9);
  font-weight: 600;
  color: #475569;
  margin: 0;
}

/* Toast Demo Buttons */
.toast-btn {
  padding: 10px 18px;
  font-size: calc(var(--base-font-size, 16px) * 0.9);
  font-family: inherit;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: white;
}

.toast-btn--info {
  background: var(--theme-primary, #6366f1);
}

.toast-btn--info:hover {
  background: color-mix(in srgb, var(--theme-primary, #6366f1) 85%, black);
}

.toast-btn--success {
  background: #22c55e;
}

.toast-btn--success:hover {
  background: #16a34a;
}

.toast-btn--warning {
  background: #f59e0b;
}

.toast-btn--warning:hover {
  background: #d97706;
}

.toast-btn--error {
  background: #ef4444;
}

.toast-btn--error:hover {
  background: #dc2626;
}

/* Chart Grid Layout */
.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .chart-grid {
    grid-template-columns: 1fr;
  }
}
