.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color, #dee2e6);
        }
        .result-value-sm {
            font-weight: 600;
            color: #28a745;
            font-size: 1.4rem;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .stats-canvas {
            width: 100%;
            height: auto;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-top: 1.5rem;
            display: block;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1rem;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 0.5rem 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        .legend-color.green { background-color: #28a745; }
        .legend-color.blue { background-color: #0d6efd; }
        .legend-color.orange { background-color: #fd7e14; }
        .legend-color.gray { background-color: #6c757d; }
        .data-input-area textarea {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            min-height: 80px;
        }
        .stat-badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .stat-badge.green {
            background-color: #d4edda;
            color: #155724;
        }
        .stat-badge.blue {
            background-color: #cce5ff;
            color: #004085;
        }
        .stat-badge.orange {
            background-color: #fff3cd;
            color: #856404;
        }
        .stat-badge.purple {
            background-color: #e8d4f5;
            color: #6c3483;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .comparison-card {
            background: white;
            border-radius: 8px;
            padding: 1.2rem;
            border: 1px solid #e9ecef;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }
        .comparison-card .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #28a745;
        }
        .comparison-card .stat-label {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }
        @media (max-width: 768px) {
            .comparison-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .comparison-grid { grid-template-columns: 1fr; }
        }
        .method-explanation {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            margin: 1rem 0;
            border: 1px solid #e9ecef;
        }
        .method-explanation h6 {
            color: #28a745;
            font-weight: 600;
        }
        .winsorized-data-display {
            max-height: 120px;
            overflow-y: auto;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            padding: 0.5rem;
            background: #f8f9fa;
            border-radius: 4px;
            border: 1px solid #e9ecef;
            word-break: break-all;
        }
        .badge-percentile {
            background-color: #28a745;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        .slider-container {
            padding: 0.5rem 0;
        }
        .slider-container .form-range {
            width: 100%;
        }
        .slider-value {
            font-weight: 600;
            color: #28a745;
            font-size: 1.1rem;
            min-width: 3.5rem;
            display: inline-block;
        }
        .data-summary-list {
            list-style: none;
            padding: 0;
        }
        .data-summary-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }
        .data-summary-list li:last-child {
            border-bottom: none;
        }