/**
 * Final Clean Version – Sally Output Styling (Enhanced with List Support)
 */

/* Main wrapper around all AI content */
.sally-output-wrapper {
    width: 100%;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
    color: #333;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Each major section group (Theme, Skill Builder, Tasks, etc.) */
.sally-section {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Section headings like “Theme”, “Daily Tasks”, etc. */
.sally-heading {
    font-size: 22px;
    font-weight: bold;
    color: #6c5ce7;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 4px;
}

/* Subheadings like “Task 1:” */
.sally-subheading {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

/* Combined label + content container */
.sally-block {
    font-size: 16px;
    color: #333;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-left: 6px solid #6c5ce7;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    line-height: 1.8;
    white-space: pre-wrap;
    word-spacing: 0.05em;
    letter-spacing: 0.2px;
}

/* First 3 words styled like a mini-heading */
.sally-lead {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 17px;
    display: inline;
}

/* Slight spacing between paragraphs inside each block */
.sally-block br + br {
    display: block;
    margin-top: 10px;
    content: " ";
}

/* Inline label inside .sally-block (if used elsewhere) */
.sally-block .sally-label {
    font-weight: bold;
    color: #6c5ce7;
    margin-right: 5px;
}

/* Numbered list formatting inside blocks */
.sally-block ol {
    margin-top: 10px;
    padding-left: 20px;
}

.sally-block ol li {
    margin-bottom: 6px;
    line-height: 1.6;
    list-style-position: inside;
}

/* Optional error and warning display */
.sally-error {
    font-size: 16px;
    color: #d63031;
    font-weight: bold;
    margin: 20px 0;
}

.sally-warning {
    font-size: 16px;
    color: #fdcb6e;
    font-weight: bold;
    margin: 20px 0;
}
