.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color, #dee2e6);
        }
        .result-row .label {
            font-weight: 500;
            color: #495057;
        }
        .result-row .value {
            font-weight: 600;
            color: var(--primary-color, #0d6efd);
            font-size: 1.15rem;
            font-family: 'Courier New', monospace;
        }
        .result-row .value.bad {
            color: #dc3545;
        }
        .result-row .value.good {
            color: #198754;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 0.8rem 1rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: #6c757d;
            font-weight: 600;
        }
        .stat-card .stat-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0d6efd;
            font-family: 'Courier New', monospace;
            margin-top: 0.2rem;
        }
        .stat-card .stat-value.bad {
            color: #dc3545;
        }
        .stat-card .stat-value.good {
            color: #198754;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .geometry-canvas {
            width: 100%;
            height: auto;
            background-color: #fafbfc;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            margin-top: 1rem;
            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.85rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            display: inline-block;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.green {
            background-color: #198754;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .measurement-input-area textarea {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            min-height: 80px;
        }
        .badge-metric {
            font-size: 0.75rem;
            font-weight: 400;
            background: #e9ecef;
            color: #495057;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            margin-left: 0.3rem;
        }
        .interpretation-box {
            background: #f1f8fe;
            border-radius: 6px;
            padding: 0.8rem 1.2rem;
            margin: 0.5rem 0;
            border: 1px solid #cfe2f7;
        }
        .interpretation-box .good {
            color: #198754;
        }
        .interpretation-box .bad {
            color: #dc3545;
        }
        @media (max-width: 768px) {
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }
            .stat-card .stat-value {
                font-size: 1.1rem;
            }
        }