.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color, #dee2e6);
        }
        .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;
        }
        .finance-canvas {
            width: 100%;
            height: auto;
            background-color: #fafcff;
            border: 1px solid #dde4ed;
            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%;
            display: inline-block;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .legend-color.purple {
            background-color: #6f42c1;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .comparison-card {
            background: #f8faff;
            border: 1px solid #e9ecf0;
            border-radius: 6px;
            padding: 0.75rem 0.5rem;
            text-align: center;
            transition: all 0.2s;
        }
        .comparison-card:hover {
            border-color: #0d6efd;
            background: #f0f6ff;
        }
        .comparison-card .freq-label {
            font-size: 0.8rem;
            color: #6c757d;
        }
        .comparison-card .apr-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: #0d6efd;
        }
        .chart-wrapper {
            position: relative;
            height: 300px;
            margin: 1.5rem 0;
        }
        .chart-wrapper canvas {
            width: 100% !important;
            height: 100% !important;
        }
        .result-summary {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: space-around;
            padding: 1rem 0;
        }
        .result-summary .stat {
            text-align: center;
        }
        .result-summary .stat .number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0d6efd;
        }
        .result-summary .stat .label {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .regulatory-badge {
            display: inline-block;
            background: #e7f3ff;
            color: #004085;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin: 0.25rem 0;
        }
        .tool-header .badge-finance {
            background: #0d6efd;
            color: #fff;
            font-weight: 500;
            padding: 0.35rem 0.9rem;
            border-radius: 30px;
            font-size: 0.85rem;
        }
        @media (max-width: 576px) {
            .result-summary .stat .number {
                font-size: 1.6rem;
            }
            .comparison-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }