.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-significant {
            color: #198754;
            font-weight: 700;
        }
        .result-not-significant {
            color: #dc3545;
            font-weight: 700;
        }
        .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%;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.green {
            background-color: #198754;
        }
        .legend-color.purple {
            background-color: #6f42c1;
        }
        .dist-select {
            font-weight: 500;
        }
        .significance-badge {
            font-size: 1.1rem;
            padding: 0.35rem 1rem;
            border-radius: 20px;
        }
        .formula-box {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            font-family: 'Cambria Math', 'Latin Modern Math', serif;
            font-size: 1.2rem;
            text-align: center;
            margin: 1rem 0;
        }
        .stat-detail {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid #e9ecef;
            margin: 0.5rem 0;
        }
        .stat-detail .label {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .stat-detail .value {
            font-size: 1.4rem;
            font-weight: 600;
        }
        .tail-selector {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .tail-btn {
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            border: 2px solid #dee2e6;
            background: white;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
        }
        .tail-btn.active {
            border-color: var(--primary-color);
            background: rgba(70, 130, 180, 0.1);
            color: var(--primary-color);
        }
        .tail-btn:hover {
            background: #f1f3f5;
        }
        .distribution-icon {
            font-size: 1.8rem;
            margin-right: 0.5rem;
        }
        .tail-hint {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }