.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }.author-bio{display:block}
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .result-card {
            background: #f8faff;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #e9ecef;
            margin-top: 1rem;
        }
        .result-card .metric {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0d6efd;
        }
        .result-card .metric-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .result-card .metric-sub {
            font-size: 1rem;
            color: #495057;
        }
        .confidence-badge {
            font-size: 0.8rem;
            background: #e9ecef;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            color: #495057;
        }
        .interpretation-box {
            background: #e7f3ff;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            border-left: 5px solid #0d6efd;
            margin: 1rem 0;
        }
        .interpretation-box .badge-clinical {
            background: #0d6efd;
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1.5rem;
        }
        .risk-chart {
            width: 100%;
            height: auto;
            background: #fafcff;
            border: 1px solid #e0e7ef;
            border-radius: 12px;
            display: block;
            max-width: 600px;
            margin: 0 auto;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 0.5rem 0 1rem 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }
        .legend-color.blue {
            background: #0d6efd;
        }
        .legend-color.orange {
            background: #fd7e14;
        }
        .legend-color.green {
            background: #198754;
        }
        .legend-color.gray {
            background: #adb5bd;
        }
        .nnt-scale {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin: 0.5rem 0;
        }
        .nnt-scale .scale-bar {
            flex: 1;
            min-width: 120px;
            height: 8px;
            background: linear-gradient(to right, #198754, #ffc107, #dc3545);
            border-radius: 4px;
            position: relative;
        }
        .nnt-scale .scale-bar .marker {
            position: absolute;
            top: -6px;
            width: 4px;
            height: 20px;
            background: #212529;
            border-radius: 2px;
        }
        .nnt-scale .scale-label {
            font-size: 0.75rem;
            color: #6c757d;
        }
        .coord-input {
            margin-bottom: 0.5rem;
        }
        .table-responsive-sm {
            overflow-x: auto;
        }
        @media (max-width: 576px) {
            .result-card .metric {
                font-size: 1.6rem;
            }
            .legend {
                gap: 0.8rem;
                font-size: 0.8rem;
            }
        }