.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;
        }
        .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: 50%;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.purple {
            background-color: #9b59b6;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stats-card {
            background: #f8f9fa;
            padding: 0.75rem;
            border-radius: 6px;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .stats-card .label {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-card .value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a7a3a;
            font-family: 'Courier New', monospace;
        }
        .data-input-area {
            font-family: 'Courier New', monospace;
            font-size: 1rem;
            min-height: 80px;
        }
        .result-summary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1rem 0;
        }
        .formula-box {
            background: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 1rem;
            text-align: center;
            font-size: 1.3rem;
            font-family: 'Cambria Math', 'Latin Modern Math', serif;
            margin: 1rem 0;
        }
        .badge-stats {
            background-color: #28a745;
            color: #fff;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .tab-content-custom {
            padding: 1rem 0;
        }
        .interpretation-box {
            border: 1px solid #28a745;
            border-radius: 8px;
            padding: 1rem;
            background: #f8fdfa;
            margin: 0.5rem 0;
        }
        .data-badge {
            display: inline-block;
            background: #e9ecef;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.8rem;
            margin: 0.15rem;
            font-family: 'Courier New', monospace;
        }
        .distribution-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 0.5rem 0;
        }
        .stat-highlight {
            background: #d4edda;
            padding: 0.1rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .eeat-alert-box {
            background: #cce5ff;
            border-left: 6px solid #004085;
            padding: 1rem 1.2rem;
            border-radius: 4px;
            margin: 1.5rem 0;
        }
        .eeat-alert-box strong {
            color: #004085;
        }