/**
 * Summary Block Base Styles
 *
 * Static styles for the LLM Ready summary block.
 * Dynamic values (colors, spacing) are injected inline.
 *
 * @package EVPRO_LLM_Ready
 */

/* Container - dynamic props set inline */
.tldr-container {
    border-radius: 8px;
}

/* Heading */
.tldr-summary h2 {
    margin-top: 0;
    font-size: 1.25rem;
}

/* Divider */
.tldr-container hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

/* TOC Heading */
.tldr-toc p {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 10px;
}

/* TOC List - list-style set inline based on setting */
.tldr-toc ul {
    list-style-position: outside;
    padding: 0;
    margin: 0;
    margin-left: 15px;
}

/* TOC Items */
.tldr-toc li {
    margin-bottom: 8px;
}

/* TOC Links */
.tldr-toc a {
    text-decoration: none;
    font-weight: 500;
}

.tldr-toc a:hover {
    text-decoration: underline;
}
