/*
 * TestComp styles - Uses CSS variables from manifest cssCustomProperties
 * All --variable-name correspond to cssCustomProperties keys
 */
.root__IWjkn {
  display: flex;
  width: 100%;
  max-width: 400px;
  /* Layout - cssVar */
  flex-direction: var(--flex-direction, column);
  justify-content: var(--justify-content, flex-start);
  gap: var(--row-gap, 0) var(--column-gap, 0);
  /* Sizing - cssVar */
  height: var(--height, auto);
  /* Background - cssVar */
  background: var(--background, #ffffff);
  background-color: var(--background-color, transparent);
  /* Border - cssVar */
  border: var(--border, 1px solid #cccccc);
  border-color: var(--border-color, inherit);
  border-width: var(--border-width, inherit);
  border-style: var(--border-style, inherit);
  border-radius: var(--border-radius, 4px);
  border-top: var(--border-top, inherit);
  border-bottom: var(--border-bottom, inherit);
  border-inline-start: var(--border-inline-start, inherit);
  border-inline-end: var(--border-inline-end, inherit);
  /* Padding - cssVar */
  padding: var(--padding, 16px);
  padding-top: var(--padding-top, inherit);
  padding-bottom: var(--padding-bottom, inherit);
  padding-inline-start: var(--padding-inline-start, inherit);
  padding-inline-end: var(--padding-inline-end, inherit);
  /* Effects - cssVar */
  box-shadow: var(--box-shadow, 0 2px 4px rgba(0, 0, 0, 0.1));
  opacity: var(--opacity, 1);
  /* Margin - cssVar */
  margin-bottom: var(--margin-bottom, 0);
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.root__IWjkn.test-comp-card--hover,
.root__IWjkn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.root__IWjkn.test-comp-card--focus,
.root__IWjkn:focus {
  outline: 2px solid #0070f3;
  outline-offset: 2px;
}

.root__IWjkn.test-comp-card--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.root__IWjkn.test-comp-card--featured {
  border: 2px solid #f5a623;
  background: #fffbea;
}

.imageWrapper__aSpta {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  width: 100%;
}

.image__ZJUGa {
  width: 100%;
  height: auto;
  display: block;
}

.content__33vE3 {
  display: flex;
  flex-direction: column;
}

.title__cnkUK {
  /* Typography - cssVar */
  font: var(--font, bold 18px/1.2 sans-serif);
  color: var(--color, #333333);
  letter-spacing: var(--letter-spacing, normal);
  line-height: var(--line-height, 1.2);
  text-align: var(--text-align, left);
  text-decoration-line: var(--text-decoration-line, none);
  text-transform: var(--text-transform, none);
  text-shadow: var(--text-shadow, none);
  margin-bottom: 8px;
}

.description__nM9YF {
  font: var(--font, normal 14px/1.4 sans-serif);
  color: var(--color, #666666);
  margin: 0;
}

/* SVG/Vector styles - cssVar */
.svgIcon__czZzs {
  fill: var(--fill, currentColor);
  fill-opacity: var(--fill-opacity, 1);
  stroke: var(--stroke, none);
  stroke-width: var(--stroke-width, 1);
  stroke-opacity: var(--stroke-opacity, 1);
}

/* Demo element for misc CSS vars */
.demoElement__HIEsA {
  /* Other types - cssVar */
  transform: rotate(var(--angle, 0deg));
  --custom-number: var(--number, 0);
  --length-value: var(--length, 0px);
  --custom-value: var(--custom-option, 10px);
}

.menuItems__jm38S {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.settingsSection__dcnh6 {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.sectionTitle__ufqkd {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.valueRow__THTHW {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0;
  font-size: 12px;
  line-height: 1.4;
  border-bottom: 1px solid #f5f5f5;
}
.valueRow__THTHW:last-child {
  border-bottom: none;
}

.valueLabel__-XJYc {
  color: #666;
  font-weight: 500;
  min-width: 140px;
}

.valueContent__BqKX9 {
  color: #333;
  word-break: break-word;
}
.valueContent__BqKX9 em {
  color: #999;
  font-style: italic;
}

.itemsList__LeegW {
  margin: 8px 0 0 0;
  padding: 0 0 0 16px;
  font-size: 12px;
}

.item__KoXT4 {
  padding: 4px 0;
  color: #333;
}

.activeItem__f7Dcz {
  background-color: #e3f2fd;
  margin: 0 -8px;
  padding: 4px 8px;
  border-radius: 4px;
}

.emptyState__Wc-ze {
  font-size: 12px;
  color: #999;
  font-style: italic;
  padding: 8px 0;
}

.functionBtn__9OquA {
  padding: 2px 10px;
  font-size: 11px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #f9f9f9;
  cursor: pointer;
}
.functionBtn__9OquA:hover {
  background: #eee;
}
.presetWrapper__J1yzj {
  display: contents;
}