.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;
        }
        .cost-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;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 0.5rem 0;
            font-size: 0.85rem;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }
        .expense-summary {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            margin-top: 0.5rem;
        }
        .expense-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 0.3rem 0;
            border-bottom: 1px solid #eee;
        }
        .expense-detail-row:last-child {
            border-bottom: none;
        }
        .expense-label {
            font-weight: 500;
        }
        .expense-value {
            font-weight: 600;
            color: var(--primary-color);
        }
        .total-badge {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
        }
        .total-badge small {
            font-size: 1rem;
            font-weight: 400;
            color: #6c757d;
        }
        .city-preset-btn {
            background: rgba(70, 130, 180, 0.08);
            border: 1px solid rgba(70, 130, 180, 0.2);
            border-radius: 6px;
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            color: #1a1a2e;
            white-space: nowrap;
        }
        .city-preset-btn:hover {
            background: rgba(70, 130, 180, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .city-preset-btn i {
            margin-right: 4px;
            color: var(--primary-color);
        }
        .slider-with-value {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .slider-with-value input[type="range"] {
            flex: 1;
        }
        .slider-with-value .value-display {
            min-width: 70px;
            text-align: right;
            font-weight: 600;
            color: var(--primary-color);
        }
        .category-icon {
           
            text-align: center;
            color: var(--primary-color);    font-size: 1rem;
    background: rgba(44,125,160,0.1);
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s;
    display: contents;
    align-items: center;
    justify-content: center;
        }
        .budget-tip {
            background: #e8f0fe;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            color: #1a3c6e;
            margin-top: 0.5rem;
        }
        .budget-tip i {
            margin-right: 0.5rem;
        }
        @media (max-width: 768px) {
            .total-badge {
                font-size: 1.8rem;
            }
            .slider-with-value .value-display {
                min-width: 55px;
                font-size: 0.9rem;
            }
        }