.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid #dee2e6;
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.danger {
            color: #dc3545;
        }
        .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: #fafcfa;
            border: 1px solid #dee2e6;
            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: 1.5rem;
            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%;
            display: inline-block;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-line {
            display: inline-block;
            width: 24px;
            height: 3px;
            border-radius: 2px;
        }
        .legend-line.green {
            background-color: #28a745;
        }
        .legend-line.blue {
            background-color: #0d6efd;
        }
        .legend-line.orange {
            background-color: #fd7e14;
        }
        .legend-line.dashed {
            background: transparent;
            border-top: 3px dashed #6c757d;
            width: 24px;
            height: 0;
        }
        .result-card {
            background: linear-gradient(145deg, #f8fdfa, #eaf5ef);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid #c3e6d3;
        }
        .result-card .big-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a3c34;
        }
        .result-card .label {
            font-size: 1rem;
            color: #4a6a5e;
        }
        .gauge-container {
            position: relative;
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
        }
        .gauge-container canvas {
            width: 100%;
            height: auto;
        }
        .metric-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .metric-item {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9ecef;
        }
        .metric-item .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3c34;
        }
        .metric-item .metric-label {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 0.2rem;
        }
        .slider-with-value {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .slider-with-value input[type="range"] {
            flex: 1;
        }
        .slider-with-value .value-badge {
            min-width: 70px;
            text-align: center;
            font-weight: 600;
            color: #1a3c34;
            background: #e9ecef;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .tooltip-icon {
            cursor: help;
            color: #6c757d;
            margin-left: 0.3rem;
        }
        .glossary-term {
            border-bottom: 1px dotted #6c757d;
            cursor: help;
        }
        .reference-list {
            font-size: 0.9rem;
            padding-left: 1.2rem;
        }
        .reference-list li {
            margin-bottom: 0.4rem;
        }
        .badge-success-light {
            background-color: #d4edda;
            color: #155724;
            font-weight: 500;
        }