.input-group-custom {
            margin-bottom: 1rem;
        }.form-label{font-size:0.9rem}
        .result-value.green {
            color: #28a745;
        }
        .result-value.gold {
            color: #d4a017;
        }
        .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: #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%;
        }
        .legend-color.green { background-color: #28a745; }
        .legend-color.blue { background-color: #0d6efd; }
        .legend-color.gold { background-color: #d4a017; }
        .legend-color.gray { background-color: #6c757d; }
        .result-summary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
        }
        .stat-card {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            text-align: center;
            height: 100%;
        }
        .stat-card .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .stat-card .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }
        .stat-card .stat-number.green { color: #28a745; }
        .stat-card .stat-number.gold { color: #d4a017; }
        .glossary-term {
            font-weight: 600;
            color: var(--accent-color);
        }
        .tip-box {
            background-color: #d1ecf1;
            border: 1px solid #bee5eb;
            color: #0c5460;
            padding: 0.75rem 1rem;
            border-radius: 4px;
            margin: 1rem 0;
        }
        .disclaimer-box {
            background-color: #f8d7da;
            border-left: 4px solid #dc3545;
            padding: 1.2rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .what-if-tip {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 1rem 0;
        }