.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.2rem;
            margin: 0.5rem 0 0.8rem 0;
            font-size: 0.9rem;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        .legend-color.green {
            background-color: #2e7d32;
        }
        .legend-color.orange {
            background-color: #e65100;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.gold {
            background-color: #f9a825;
        }
        .legend-color.purple {
            background-color: #7b1fa2;
        }
        .growth-badge {
            display: inline-block;
            padding: 0.3rem 0.9rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
        }
        .growth-badge.underweight {
            background-color: #ffcdd2;
            color: #b71c1c;
        }
        .growth-badge.healthy {
            background-color: #c8e6c9;
            color: #1b5e20;
        }
        .growth-badge.overweight {
            background-color: #ffecb3;
            color: #e65100;
        }
        .growth-badge.obese {
            background-color: #ffccbc;
            color: #bf360c;
        }
        .growth-badge.at-risk {
            background-color: #fff9c4;
            color: #f57f17;
        }
        .percentile-ring {
            display: inline-block;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: conic-gradient(var(--primary-color) 0% var(--pct), #e9ecef var(--pct) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .percentile-ring-inner {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .percentile-ring-inner small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #6c757d;
        }
        .growth-chart-container {
            position: relative;
        }
        .zscore-badge {
            font-size: 1.1rem;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            background: #e3f2fd;
            color: #0d47a1;
        }
        .clinical-tip {
            background: #f3e5f5;
            border-left: 4px solid #7b1fa2;
            padding: 1rem 1.2rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .section-highlight {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }