.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.green {
            color: #28a745;
        }
        .result-value.orange {
            color: #fd7e14;
        }
        .result-value.red {
            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;
        }
        .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;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        .legend-color.traditional {
            background-color: #1f77b4;
        }
        .legend-color.roth {
            background-color: #ff7f0e;
        }
        .legend-color.balance {
            background-color: #2ca02c;
        }
        .result-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            margin: 0.5rem 0;
            border: 1px solid #e9ecef;
        }
        .result-card .label {
            font-size: 0.85rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .result-card .number {
            font-size: 1.8rem;
            font-weight: 700;
        }
        .comparison-bar {
            height: 24px;
            background: #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            margin: 0.5rem 0;
        }
        .comparison-bar .fill {
            height: 100%;
            border-radius: 12px;
            transition: width 0.6s ease;
        }
        .fill.traditional-fill {
            background: #1f77b4;
        }
        .fill.roth-fill {
            background: #ff7f0e;
        }
        .tooltip-icon {
            cursor: help;
            color: #6c757d;
            margin-left: 4px;
        }
        .summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 576px) {
            .summary-grid {
                grid-template-columns: 1fr;
            }
        }
        .badge-ira {
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
        }
        .badge-traditional {
            background: #1f77b4;
            color: #fff;
        }
        .badge-roth {
            background: #ff7f0e;
            color: #fff;
        }
        .form-select-custom {
            appearance: auto;
        }
        .assumption-note {
            font-size: 0.85rem;
            color: #6c757d;
            border-left: 3px solid #6c757d;
            padding-left: 0.75rem;
            margin: 0.5rem 0 1rem 0;
        }
        .growth-negative {
            color: #dc3545;
        }
        .growth-positive {
            color: #28a745;
        }