.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-sm {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        .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: #fafafa;
            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;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 0.5rem 0 0.5rem 0;
            font-size: 0.85rem;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: inline-block;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.purple {
            background-color: #6f42c1;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.dark {
            background-color: #343a40;
        }
        .range-input-group {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .range-input-group input {
            width: 100px;
        }
        .custom-range-box {
            background-color: #f8f9fa;
            border-radius: 6px;
            padding: 0.8rem 1rem;
            margin: 0.5rem 0;
            border: 1px solid #e9ecef;
        }
        .interval-display {
            font-size: 1.1rem;
            font-family: 'Courier New', monospace;
            background: #f0f4f8;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            display: inline-block;
            margin: 0.2rem 0;
        }
        .interval-badge {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 12px;
            font-weight: 500;
            font-size: 0.85rem;
        }
        .badge-68 {
            background-color: #0d6efd20;
            color: #0d6efd;
            border: 1px solid #0d6efd40;
        }
        .badge-95 {
            background-color: #28a74520;
            color: #28a745;
            border: 1px solid #28a74540;
        }
        .badge-997 {
            background-color: #fd7e1420;
            color: #fd7e14;
            border: 1px solid #fd7e1440;
        }
        .badge-custom {
            background-color: #6f42c120;
            color: #6f42c1;
            border: 1px solid #6f42c140;
        }
        .zscore-display {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .stat-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .stat-summary-item {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 0.8rem;
            text-align: center;
        }
        .stat-summary-item .label {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stat-summary-item .value {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
        }