.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 0.8rem 1rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6c757d;
        }
        .stat-card .stat-number {
            font-size: 1.6rem;
            font-weight: 700;
            color: #2c3e50;
            font-family: 'Cambria Math', serif;
        }
        .stat-card .stat-number.special {
            color: var(--primary-color);
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .chart-container canvas {
            width: 100% !important;
            height: 100% !important;
        }
        .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.blue {
            background-color: #0d6efd;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .legend-color.green {
            background-color: #198754;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .data-input-area {
            font-family: 'Courier New', monospace;
            min-height: 80px;
        }
        .stat-summary {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .stat-summary .badge-stat {
            background: #e9ecef;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        .badge-stat .label {
            color: #6c757d;
        }
        .badge-stat .value {
            font-weight: 600;
            color: #2c3e50;
        }
        .tooltip-stat {
            border-bottom: 1px dashed #ccc;
            cursor: help;
        }
        @media (max-width: 768px) {
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }