.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;
            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.gray {
            background-color: #6c757d;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .table-grid {
            display: grid;
            grid-template-columns: auto auto auto auto;
            gap: 2px;
            max-width: 350px;
            margin: 1rem auto;
            font-size: 1.2rem;
        }
        .table-grid .cell {
            padding: 10px 14px;
            text-align: center;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
        }
        .table-grid .cell-label {
            font-weight: 600;
            background-color: #e9ecef;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 10px 14px;
            text-align: center;
        }
        .table-grid .cell-input input {
            width: 70px;
            text-align: center;
            border: 1px solid #ced4da;
            border-radius: 4px;
            padding: 6px 4px;
            font-size: 1.1rem;
        }
        .p-value-display {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0d6efd;
            font-family: 'Courier New', monospace;
        }
        .p-value-display.small-p {
            font-size: 1.4rem;
        }
        .odds-display {
            font-size: 1.6rem;
            font-weight: 600;
            color: #198754;
        }
        .dist-summary {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            margin: 1rem 0;
        }
        .stat-badge {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .stat-badge.bg-light-blue {
            background-color: #cfe2ff;
            color: #084298;
        }
        .stat-badge.bg-light-green {
            background-color: #d1e7dd;
            color: #0a3622;
        }
        .stat-badge.bg-light-red {
            background-color: #f8d7da;
            color: #58151c;
        }
        .interpretation-box {
            background-color: #e8f4f8;
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            border-left: 4px solid #0d6efd;
            margin: 1.2rem 0;
        }
        .table-container {
            overflow-x: auto;
        }
        .mini-table {
            display: inline-table;
            border-collapse: collapse;
            margin: 0.5rem auto;
            font-size: 1.1rem;
        }
        .mini-table td,
        .mini-table th {
            padding: 8px 16px;
            border: 1px solid #dee2e6;
            text-align: center;
        }
        .mini-table th {
            background-color: #e9ecef;
            font-weight: 600;
        }
        .example-card {
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin: 0.8rem 0;
            transition: all 0.2s;
        }
        .example-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .example-card .example-title {
            font-weight: 600;
            color: var(--primary-color);
        }
        .btn-outline-example {
            border-color: #6c757d;
            color: #6c757d;
        }
        .btn-outline-example:hover {
            background-color: #6c757d;
            color: #fff;
        }
        .ci-text {
            font-size: 1rem;
            font-weight: normal;
            color: #333;
        }
        .midp-text {
            font-size: 1.2rem;
            font-weight: 500;
        }
        @media (max-width: 576px) {
            .p-value-display {
                font-size: 1.6rem;
            }
            .table-grid .cell-input input {
                width: 55px;
            }
            .legend {
                gap: 0.8rem;
                font-size: 0.75rem;
            }
            .table-grid {
                font-size: 1rem;
            }
        }