.psp-app{
  max-width: 760px;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid var(--wp--preset--color--accent-4, #dedcd8);
  border-radius: 16px;
  background: var(--wp--preset--color--accent-3, #f2f1ef);
}

.psp-title{
  margin: 0 0 0.75rem 0;
}

.psp-controls{
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.psp-button{
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  background: var(--wp--preset--color--accent-1, #5b7c6d);
  color: var(--wp--preset--color--base, #faf9f7);
  font-weight: 600;
}

.psp-button:hover{
  background: var(--wp--preset--color--accent-2, #7f9e90);
}

.psp-result{
  padding: 1rem;
  border-radius: 12px;
  background: var(--wp--preset--color--base, #faf9f7);
  border: 1px solid var(--wp--preset--color--accent-4, #dedcd8);
}

.psp-muted{
  margin: 0;
  color: var(--wp--preset--color--accent-5, #6b6b6b);
}
.psp-controls--row{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.psp-label select{
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--wp--preset--color--accent-4, #dedcd8);
  background: var(--wp--preset--color--base, #faf9f7);
}

.psp-label--inline{
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.psp-toggles{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.psp-toggle{
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--wp--preset--color--accent-4, #dedcd8);
  border-radius: 999px;
  background: var(--wp--preset--color--accent-6, #e8efea);
}

.psp-line{
  margin: 0.35rem 0;
}
.psp-button--secondary{
  background: var(--wp--preset--color--base, #faf9f7);
  color: var(--wp--preset--color--contrast, #2e2e2e);
  border: 1px solid var(--wp--preset--color--accent-4, #dedcd8);
}
.psp-button--secondary:hover{
  background: var(--wp--preset--color--accent-6, #e8efea);
}
.psp-button--small{
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
/* Prompt line layout */
.psp-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 0.75rem;
  align-items: start;
}

/* Category label */
.psp-line > div:first-child {
  font-weight: 600;       /* clearly different */
  font-size: 0.85rem;     /* smaller than content */
  color: #6b6b6b;         /* softer tone */
  line-height: 1.4;
}

/* Optional: subtle divider */
.psp-line > div:first-child::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 0.35rem;
  background-color: #e0e0e0;
}

/* Prompt content */
.psp-line__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
/* Strong, specific targeting so the theme can't flatten it */
.psp-app .psp-line__label{
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  opacity: 0.75 !important;
  margin: 0 !important;
}

/* (Optional) make the line a tidy two-column layout */
.psp-app .psp-line{
  display: grid !important;
  grid-template-columns: 120px 1fr !important;
  column-gap: 0.75rem !important;
  align-items: start !important;
}