/* Theme Preview Section */
.theme-preview {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-border);
}

.theme-preview h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.preview-elements {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.preview-element {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  flex-shrink: 0;
}

.theme-preview p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--neutral-gray);
  line-height: 1.5;
}

/* Coffee Theme Preview Colors */
[data-theme="coffee"] .theme-preview {
  background: #f5f5f5;
  color: #333;
}
[data-theme="coffee"] .preview-element:nth-child(1) {
  background: #5d4037;
}
[data-theme="coffee"] .preview-element:nth-child(2) {
  background: #d7ccc8;
}
[data-theme="coffee"] .preview-element:nth-child(3) {
  background: #8d6e63;
}
[data-theme="coffee"] .preview-element:nth-child(4) {
  background: #3e2723;
}