.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .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;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }
        .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.green {
            background-color: #28a745;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .test-selector {
            display: flex;
            gap: 1.5rem;
            margin: 1rem 0 1.5rem 0;
            flex-wrap: wrap;
        }
        .test-selector .form-check {
            margin-right: 1rem;
        }
        .stat-summary {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .stat-card .stat-value {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .stat-card .stat-label {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .result-card {
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
            margin: 0.5rem 0;
        }
        .result-card .label {
            font-weight: 500;
        }
        .result-card .value {
            font-weight: 600;
            font-size: 1.2rem;
        }
        .decision-box {
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            font-weight: 500;
        }
        .decision-box.reject {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        .decision-box.fail {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        .decision-box.info {
            background-color: #d1ecf1;
            border: 1px solid #bee5eb;
            color: #0c5460;
        }
        .data-input-area textarea {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
        }
        .data-input-area .inline-stat {
            display: inline-block;
            margin: 0 0.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .f-dist-plot {
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .stat-summary {
                grid-template-columns: 1fr 1fr;
            }
            .test-selector {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .stat-summary {
                grid-template-columns: 1fr;
            }
        }