.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-danger {
            font-weight: 600;
            color: #dc3545;
            font-size: 2rem;
        }
        .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;
        }
        .stat-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.red {
            background-color: #dc3545;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .mode-selector {
            margin: 1.2rem 0;
        }
        .mode-selector .btn-group {
            width: 100%;
        }
        .mode-selector .btn {
            flex: 1;
        }
        .stat-summary {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            margin: 0.5rem 0;
        }
        .stat-summary .label {
            font-weight: 500;
            color: #495057;
        }
        .stat-summary .value {
            font-weight: 700;
            font-size: 1.4rem;
        }
        .significance-badge {
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
        }
        .significance-badge.sig {
            background: #dc3545;
            color: #fff;
        }
        .significance-badge.not-sig {
            background: #28a745;
            color: #fff;
        }
        .mode-description {
            font-size: 0.95rem;
            color: #495057;
            padding: 0.5rem 0;
        }
        .input-section {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1.2rem;
        }
        .input-section .result-card {
            background: white;
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.2rem;
        }
        .df-badge {
            display: inline-block;
            background: #e9ecef;
            padding: 0.2rem 0.8rem;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #495057;
        }
        .f-dist-params {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin: 0.5rem 0;
        }
        .f-dist-params span {
            font-size: 0.9rem;
            color: #495057;
        }
        .f-dist-params strong {
            color: #1a7a3a;
        }
        .insight-box {
            background: #e8f5e9;
            border-radius: 6px;
            padding: 0.8rem 1.2rem;
            margin: 0.8rem 0;
            border-left: 3px solid #28a745;
        }
        .insight-box.warning {
            background: #fff3e0;
            border-left-color: #ff9800;
        }
        .insight-box.danger {
            background: #fce4ec;
            border-left-color: #dc3545;
        }
        .result-value-lg {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a7a3a;
        }
        .result-value-lg.danger {
            color: #dc3545;
        }
        .test-decision {
            font-size: 1.1rem;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            font-weight: 600;
            display: inline-block;
        }
        .test-decision.reject {
            background: #fce4ec;
            color: #c62828;
            border: 1px solid #ef9a9a;
        }
        .test-decision.fail {
            background: #e8f5e9;
            color: #2e7d32;
            border: 1px solid #a5d6a7;
        }