/* ── 요약 텍스트 강조 ── */
.text-success { color: #065F46; }
#summaryText { font-size: 14px; color: #242933; }
#summaryText strong { font-weight: 600; }

/* ── 혜택 종류별 차트 flex 레이아웃 ── */
.type-chart-flex {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
}
.type-chart-canvas {
    flex: 1;
    min-width: 0;
    height: 320px;
    margin-top: 0;
}
.chart-side-legend {
    min-width: 220px;
    padding-top: 16px;
}
.chart-side-legend .legend-group { margin-bottom: 16px; }
.chart-side-legend .legend-group-name {
    font-size: 13px;
    font-weight: 600;
    color: #242933;
    margin-bottom: 6px;
}
.chart-side-legend .legend-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 13px;
    color: #667085;
}
.chart-side-legend .legend-row .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.chart-side-legend .legend-row .legend-count {
    margin-left: auto;
    color: #242933;
    font-weight: 500;
}

/* ── 요일별 선호도 상단 범례 ── */
.tit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    flex-direction: column;
}
.tit-row .tit {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    align-self: flex-start;
}
.chart-top-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-end;
}
.chart-top-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #667085;
}
.legend-dot.outline {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9DEE7;
}
.legend-line {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #065F46;
    vertical-align: middle;
}