.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%;
        }
        .legend-color.green {
            background-color: #2ecc71;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.orange {
            background-color: #f39c12;
        }
        .legend-color.red {
            background-color: #e74c3c;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .price-tier-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .tier-budget {
            background-color: #2ecc71;
            color: #fff;
        }
        .tier-standard {
            background-color: #3498db;
            color: #fff;
        }
        .tier-premium {
            background-color: #f39c12;
            color: #fff;
        }
        .tier-luxury {
            background-color: #e74c3c;
            color: #fff;
        }
        .gauge-container {
            position: relative;
            margin: 1.5rem auto;
            max-width: 400px;
        }
        .gauge-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .gauge-label {
            text-align: center;
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }
        .comparison-bar {
            background-color: #ecf0f1;
            border-radius: 8px;
            height: 28px;
            margin: 0.5rem 0;
            overflow: hidden;
            position: relative;
        }
        .comparison-bar-fill {
            height: 100%;
            border-radius: 8px;
            transition: width 0.6s ease;
            background: linear-gradient(90deg, #2ecc71, #f1c40f, #e74c3c);
        }
        .comparison-bar-label {
            position: absolute;
            top: 50%;
            left: 8px;
            transform: translateY(-50%);
            font-size: 0.8rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .comparison-bar-value {
            position: absolute;
            top: 50%;
            right: 8px;
            transform: translateY(-50%);
            font-size: 0.8rem;
            font-weight: 600;
            color: #2c3e50;
        }
        .stat-card {
            background: white;
            border-radius: 8px;
            padding: 1rem 1.25rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
            text-align: center;
            height: 100%;
        }
        .stat-card .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .stat-card .stat-label {
            font-size: 0.85rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stat-card .stat-icon {
            font-size: 1.8rem;
            color: var(--primary-color);
            opacity: 0.3;
            margin-bottom: 0.25rem;
        }
        .price-indicator {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.25rem 0;
            font-size: 0.85rem;
            color: #6c757d;
        }
        .price-indicator .tick {
            flex: 1;
            height: 4px;
            background: #ddd;
            margin: 0 0.15rem;
            border-radius: 2px;
            position: relative;
        }
        .price-indicator .tick.active {
            background: var(--primary-color);
        }
        .price-indicator .tick-label {
            text-align: center;
            font-size: 0.7rem;
            margin-top: 0.2rem;
        }
        .result-highlight {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 6px solid var(--primary-color);
            margin: 1rem 0;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .comparison-item {
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            transition: all 0.2s;
        }
        .comparison-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }
        .comparison-item .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .comparison-item .category {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .comparison-item .diff {
            font-size: 0.8rem;
            font-weight: 500;
        }
        .diff-positive {
            color: #2ecc71;
        }
        .diff-negative {
            color: #e74c3c;
        }