.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }.chart-container{height:auto}
        .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;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .depreciation-schedule {
            max-height: 320px;
            overflow-y: auto;
            font-size: 0.9rem;
        }
        .depreciation-schedule table {
            width: 100%;
            border-collapse: collapse;
        }
        .depreciation-schedule th {
            position: sticky;
            top: 0;
            background: #f1f4f9;
            z-index: 2;
            padding: 0.5rem 0.25rem;
            border-bottom: 2px solid #ccc;
        }
        .depreciation-schedule td {
            padding: 0.4rem 0.25rem;
            border-bottom: 1px solid #eee;
            text-align: center;
        }
        .depreciation-schedule tr:hover {
            background-color: #f8faff;
        }
        .badge-custom {
            font-size: 0.8rem;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
        }
        .chart-container canvas {
            width: 100% !important;
            height: auto !important;
            max-height: 300px;
        }
        .method-comparison {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .method-card {
            flex: 1 1 200px;
            background: #f8faff;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid #e2e8f0;
            text-align: center;
        }
        .method-card h6 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .method-card .highlight {
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        .btn-outline-secondary-custom {
            color: #6c757d;
            border-color: #ced4da;
        }
        .btn-outline-secondary-custom:hover {
            background-color: #f1f4f9;
        }
        .summary-stat {
            background: #f8faff;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            border-left: 3px solid var(--primary-color);
            margin: 0.4rem 0;
        }
        .summary-stat strong {
            color: var(--primary-color);
        }