.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color, #dee2e6);
        }
        .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;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1rem;
        }
        .distribution-canvas {
            width: 100%;
            height: auto;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-top: 0.5rem;
            display: block;
        }
        .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: 3px;
        }
        .legend-color.bar {
            background-color: #0d6efd;
        }
        .legend-color.highlight {
            background-color: #dc3545;
        }
        .dice-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .dice-btn {
            min-width: 52px;
            text-align: center;
            font-weight: 600;
        }
        .dice-btn.active {
            background-color: var(--primary-color, #0d6efd);
            color: #fff;
            border-color: var(--primary-color, #0d6efd);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 0.75rem 0.5rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .stat-card .stat-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #6c757d;
            letter-spacing: 0.5px;
        }
        .stat-card .stat-value {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
        }
        .probability-bar-container {
            margin: 0.25rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
        }
        .probability-bar-track {
            flex: 1;
            height: 12px;
            background: #e9ecef;
            border-radius: 6px;
            overflow: hidden;
        }
        .probability-bar-fill {
            height: 100%;
            background: #0d6efd;
            border-radius: 6px;
            transition: width 0.3s ease;
        }
        .probability-bar-fill.highlight {
            background: #dc3545;
        }
        .distribution-table-wrap {
            max-height: 300px;
            overflow-y: auto;
            margin: 1rem 0;
        }
        .distribution-table-wrap table {
            width: 100%;
            font-size: 0.9rem;
        }
        .distribution-table-wrap th {
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 2;
            border-bottom: 2px solid #dee2e6;
        }
        .badge-dice {
            font-size: 0.8rem;
            padding: 0.35rem 0.65rem;
            border-radius: 20px;
        }
        .form-range-custom {
            width: 100%;
        }
        .inline-flex {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .target-input-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        @media (max-width: 576px) {
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }