/* ============================================================================
 * 06-values-yaml/style.css — clone du pattern 06-config-yaml (Linux)
 * ============================================================================ */

.yaml-panel {
    left: 4%; top: 18%;
    width: 52%; height: 76%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 189, 248, 0.3) transparent;
}
.yaml-panel::-webkit-scrollbar { width: 8px; }
.yaml-panel::-webkit-scrollbar-track { background: transparent; }
.yaml-panel::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.3);
    border-radius: 4px;
}
.yaml-panel::-webkit-scrollbar-thumb:hover { background: rgba(56, 189, 248, 0.5); }
.yaml-panel .yl {
    display: block;
    padding: 2px 10px;
    margin: 0 -10px;
    white-space: pre;
    font-size: 0.84rem;
    line-height: 1.55;
    border-left: 3px solid transparent;
    transition: all 0.4s;
    opacity: 0.25;
}
.yaml-panel .yl.a-active { opacity: 1; background: rgba(56, 189, 248, 0.1); border-left-color: var(--cyan); }
.yaml-panel .yl.a-past   { opacity: 0.55; }

/* Syntax tokens */
.yaml-panel .yl[data-c="k"] { color: #c792ea; font-weight: 600; }
.yaml-panel .yl[data-c="c"] { color: #546e7a; font-style: italic; }

.section-side {
    left: 58%; top: 18%;
    width: 38%; height: 76%;
    overflow: auto;
}
.section-side table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.82rem;
}
.section-side table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: top;
}
.section-side table td:first-child {
    color: var(--cyan);
    font-family: 'Courier New', monospace;
    font-weight: 600;
    width: 38%;
    white-space: nowrap;
}
.section-side table td:last-child {
    color: var(--gray);
    line-height: 1.45;
}

/* Checklist mode — recap shown inside the side panel with green theme */
.section-side.checklist-mode {
    background: linear-gradient(145deg, #0f2a1e, #0d3320);
    border: 1px solid rgba(0, 230, 118, 0.4);
}
.section-side.checklist-mode .ds-tag,
.section-side.checklist-mode h4 {
    color: var(--green);
}
.side-checklist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: none;
}
.side-checklist li {
    padding: 8px 12px;
    margin: 6px 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--text);
    background: rgba(0, 230, 118, 0.05);
    border-left: 3px solid var(--green);
    border-radius: 4px;
}
.side-checklist li::before {
    content: "✓ ";
    color: var(--green);
    font-weight: 700;
    margin-right: 6px;
}
