.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;
        }
        .finance-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%;
            display: inline-block;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .result-card {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1.2rem;
            margin: 0.5rem 0;
            border: 1px solid #e9ecef;
        }
        .result-card .label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6c757d;
        }
        .result-card .value {
            font-size: 2rem;
            font-weight: 700;
            color: #1a2a3a;
        }
        .result-card .value .currency {
            font-size: 1.2rem;
            font-weight: 400;
            color: #6c757d;
            margin-right: 4px;
        }
        .result-card .sub {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .liquidity-meter {
            height: 8px;
            border-radius: 4px;
            background: #e9ecef;
            margin-top: 0.5rem;
            overflow: hidden;
        }
        .liquidity-meter .fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, #dc3545, #ffc107, #28a745);
            transition: width 0.4s ease;
        }
        .metric-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }
        .metric-item {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .metric-item .number {
            font-size: 1.6rem;
            font-weight: 700;
        }
        .metric-item .label {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .positive {
            color: #28a745;
        }
        .negative {
            color: #dc3545;
        }
        .neutral {
            color: #ffc107;
        }
        .spread-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            margin: 0.5rem 0;
        }
        .spread-indicator .bid,
        .spread-indicator .ask {
            font-size: 1.2rem;
            font-weight: 600;
        }
        .spread-indicator .bid {
            color: #dc3545;
        }
        .spread-indicator .ask {
            color: #28a745;
        }
        .spread-indicator .arrow {
            font-size: 1.5rem;
            color: #6c757d;
        }
        .spread-indicator .spread-value {
            font-size: 1.2rem;
            font-weight: 600;
            background: #f1f3f5;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
        }
        .glossary-term {
            font-weight: 600;
            color: #1a2a3a;
        }
        .reference-list {
            columns: 2 240px;
            column-gap: 2rem;
            padding-left: 1.2rem;
        }
        .reference-list li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        @media (max-width: 576px) {
            .metric-grid {
                grid-template-columns: 1fr 1fr;
            }
            .spread-indicator {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            .reference-list {
                columns: 1;
            }
        }