.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;
        }
        .stats-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: 2px;
        }
        .legend-color.box { background-color: rgba(13, 110, 253, 0.3); border: 1px solid #0d6efd; }
        .legend-color.median { background-color: #dc3545; }
        .legend-color.whisker { background-color: #6c757d; height: 2px; width: 24px; }
        .legend-color.outlier { background-color: #fd7e14; border-radius: 50%; }
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .summary-item {
            background: white;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .summary-item .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #6c757d;
            letter-spacing: 0.5px;
        }
        .summary-item .value {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        .summary-item .value.median-val { color: #dc3545; }
        .summary-item .value.q1-val { color: #0d6efd; }
        .summary-item .value.q3-val { color: #0d6efd; }
        .summary-item .value.min-val { color: #198754; }
        .summary-item .value.max-val { color: #198754; }
        .data-preview {
            background: #f8f9fa;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            max-height: 80px;
            overflow-y: auto;
            margin-top: 0.5rem;
            word-break: break-all;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stats-item {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .stats-item .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #6c757d;
        }
        .stats-item .value {
            font-size: 1.1rem;
            font-weight: 500;
        }
        .outlier-badge {
            display: inline-block;
            background: #fd7e14;
            color: white;
            border-radius: 12px;
            padding: 0.15rem 0.6rem;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 0.3rem;
        }
        textarea.data-count-badge {
            background: #e9ecef;
            border-radius: 12px;
            padding: 0.15rem 0.75rem;
            font-size: 0.8rem;
            color: #495057;
        }
        .stats-method-note {
            font-size: 0.85rem;
            background: #f1f3f5;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 0.5rem 0;
            color: #495057;
        }