.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid #dee2e6;
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.blue {
            color: #0d6efd;
        }
        .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: #fafcfb;
            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.orange {
            background-color: #fd7e14;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.purple {
            background-color: #6f42c1;
        }
        .result-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }
        .result-summary-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .result-summary-card .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #6c757d;
            letter-spacing: 0.5px;
        }
        .result-summary-card .value {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a7a3a;
        }
        .result-summary-card .value.blue {
            color: #0d6efd;
        }
        .result-summary-card .value.orange {
            color: #fd7e14;
        }
        .result-summary-card .value.purple {
            color: #6f42c1;
        }
        .mode-toggle {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.2rem;
            flex-wrap: wrap;
        }
        .mode-toggle .btn {
            flex: 1;
            min-width: 120px;
        }
        .mode-toggle .btn.active-mode {
            background-color: #28a745;
            border-color: #28a745;
            color: #fff;
        }
        .mode-toggle .btn:not(.active-mode) {
            background-color: #e9ecef;
            border-color: #ced4da;
            color: #495057;
        }
        .mode-toggle .btn:not(.active-mode):hover {
            background-color: #d4d8dd;
        }
        .chart-legend {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
            font-size: 0.85rem;
        }
        .chart-legend-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .chart-legend-color {
            width: 20px;
            height: 3px;
            border-radius: 2px;
        }
        .chart-legend-color.green {
            background-color: #28a745;
        }
        .chart-legend-color.blue {
            background-color: #0d6efd;
        }
        .chart-legend-color.orange {
            background-color: #fd7e14;
        }
        .slider-value {
            font-weight: 600;
            color: #1a7a3a;
        }
        .expense-ratio-note {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 0.25rem;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        @media (max-width: 576px) {
            .result-summary-grid {
                grid-template-columns: 1fr 1fr;
            }
            .mode-toggle .btn {
                font-size: 0.8rem;
                padding: 0.4rem 0.5rem;
            }
        }