.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.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;
            justify-content: center;
            gap: 2rem;
            margin: 0.5rem 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: inline-block;
        }
        .legend-color.red { background-color: #dc3545; }
        .legend-color.blue { background-color: #0d6efd; }
        .legend-color.green { background-color: #28a745; }
        .legend-color.purple { background-color: #9b59b6; }
        .legend-color.orange { background-color: #fd7e14; }
        .legend-line {
            display: inline-block;
            width: 30px;
            height: 3px;
            border-radius: 2px;
        }
        .legend-line.red { background-color: #dc3545; }
        .legend-line.blue { background-color: #0d6efd; }
        .legend-line.green { background-color: #28a745; }
        .legend-line.orange { background-color: #fd7e14; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stat-card {
            background: white;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6c757d;
        }
        .stat-card .stat-number {
            font-size: 1.6rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .stat-card .stat-number.small {
            font-size: 1.1rem;
        }
        .zscore-table {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .zscore-table th {
            background-color: #f1f3f5;
        }
        .data-input-area {
            font-family: 'Courier New', monospace;
            font-size: 1rem;
            min-height: 100px;
        }
        .badge-stat {
            font-size: 0.75rem;
            padding: 0.3rem 0.6rem;
        }
        .outlier-badge {
            background-color: #dc3545;
            color: white;
            border-radius: 12px;
            padding: 0.1rem 0.6rem;
            font-size: 0.7rem;
        }
        .stat-highlight {
            background-color: rgba(13, 110, 253, 0.08);
            border-radius: 4px;
            padding: 0.1rem 0.5rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(70, 130, 180, 0.05);
        }
        .distribution-badge {
            display: inline-block;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background-color: #e9ecef;
            color: #495057;
        }
        .distribution-badge.symmetric {
            background-color: #d4edda;
            color: #155724;
        }
        .distribution-badge.skewed-right {
            background-color: #fff3cd;
            color: #856404;
        }
        .distribution-badge.skewed-left {
            background-color: #cce5ff;
            color: #004085;
        }
        .distribution-badge.bimodal {
            background-color: #f8d7da;
            color: #721c24;
        }