.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.box {
            width: 20px;
            height: 12px;
            border-radius: 2px;
            background: rgba(13, 110, 253, 0.3);
            border: 2px solid #0d6efd;
        }
        .legend-color.whisker {
            width: 24px;
            height: 2px;
            background: #0d6efd;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .legend-color.whisker::after {
            content: '';
            width: 4px;
            height: 10px;
            background: #0d6efd;
            display: inline-block;
        }
        .legend-color.whisker::before {
            content: '';
            width: 4px;
            height: 10px;
            background: #0d6efd;
            display: inline-block;
        }
        .legend-color.outlier {
            background: #dc3545;
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .legend-color.median {
            background: #198754;
            width: 4px;
            height: 16px;
            border-radius: 1px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stat-card {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 0.6rem 0.3rem;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }
        .stat-card .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #6c757d;
        }
        .stat-card .value {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            font-family: 'Courier New', monospace;
        }
        .stat-card .value.outlier-count {
            color: #dc3545;
        }
        .data-input-area textarea {
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            min-height: 80px;
        }
        .outlier-tag {
            display: inline-block;
            background: #dc3545;
            color: white;
            font-size: 0.7rem;
            padding: 0.1rem 0.5rem;
            border-radius: 12px;
            margin-left: 0.4rem;
            font-weight: 600;
        }
        .summary-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.5rem;
        }
        .summary-list li {
            padding: 0.2rem 0;
            border-bottom: 1px dashed #f0f0f0;
            display: flex;
            justify-content: space-between;
        }
        .summary-list .stat-label {
            font-weight: 500;
            color: #495057;
        }
        .summary-list .stat-value {
            font-weight: 600;
            color: #0d6efd;
            font-family: 'Courier New', monospace;
        }
        .box-plot-svg {
            width: 100%;
            height: auto;
            background: #fafbfc;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            margin-top: 0.5rem;
        }
        .data-badge {
            display: inline-block;
            background: #e9ecef;
            border-radius: 12px;
            padding: 0.1rem 0.6rem;
            font-size: 0.75rem;
            color: #495057;
            margin: 0.1rem 0.2rem;
            font-family: 'Courier New', monospace;
        }
        .range-indicator {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #6c757d;
            padding: 0 0.5rem;
        }
        #validCountDisplay {
            font-size: 0.85rem;
            color: #28a745;
            font-weight: 500;
        }
        .all-outlier-msg {
            background: #f8d7da;
            color: #721c24;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            display: inline-block;
        }
        @media (max-width: 576px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.4rem;
            }
            .stat-card .value {
                font-size: 1.1rem;
            }
            .stat-card .label {
                font-size: 0.6rem;
            }
            .summary-list {
                grid-template-columns: 1fr;
            }
            .legend {
                gap: 1rem;
                font-size: 0.75rem;
            }
        }