.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.pass {
            color: #28a745;
        }
        .result-value.fail {
            color: #dc3545;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .coord-input {
            margin-bottom: 0.5rem;
        }
        .geometry-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.red {
            background-color: #dc3545;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.purple {
            background-color: #9b59b6;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stats-card {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            text-align: center;
            border: 1px solid #eee;
        }
        .stats-card .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #6c757d;
        }
        .stats-card .value {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
        }
        .test-result-card {
            border-left: 4px solid var(--primary-color);
            padding: 0.75rem 1rem;
            margin: 0.5rem 0;
            background: #f8f9fa;
            border-radius: 0 6px 6px 0;
        }
        .test-result-card .test-name {
            font-weight: 600;
        }
        .test-result-card .stat-value {
            font-family: 'Courier New', monospace;
            font-weight: 500;
        }
        .test-result-card .p-value {
            font-weight: 600;
        }
        .test-result-card .verdict {
            font-weight: 600;
            padding: 0.15rem 0.6rem;
            border-radius: 12px;
            font-size: 0.85rem;
            display: inline-block;
        }
        .verdict.pass {
            background: #d4edda;
            color: #155724;
        }
        .verdict.fail {
            background: #f8d7da;
            color: #721c24;
        }
        .verdict.inconclusive {
            background: #fff3cd;
            color: #856404;
        }
        .data-input-area {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            min-height: 120px;
        }
        .chart-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .chart-col {
            flex: 1 1 300px;
            min-width: 280px;
        }
        .chart-col canvas {
            width: 100%;
            height: auto;
            background: #fafafa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
        }
        .chart-title {
            font-weight: 500;
            text-align: center;
            margin-bottom: 0.5rem;
            color: #495057;
        }
        .method-badge {
            display: inline-block;
            padding: 0.15rem 0.6rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: #e9ecef;
            color: #495057;
            margin-left: 0.5rem;
        }
        .method-badge.primary {
            background: var(--primary-color);
            color: #fff;
        }
        .method-badge.success {
            background: #28a745;
            color: #fff;
        }
        .method-badge.warning {
            background: #ffc107;
            color: #212529;
        }
        .method-badge.danger {
            background: #dc3545;
            color: #fff;
        }
        .data-count {
            font-size: 0.9rem;
            color: #6c757d;
        }
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .chart-row {
                flex-direction: column;
            }
            .chart-col {
                flex: 1 1 auto;
            }
        }