.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;
        }
        .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.management {
            background-color: #0d6efd;
        }
        .legend-color.distribution {
            background-color: #fd7e14;
        }
        .legend-color.other {
            background-color: #28a745;
        }
        .legend-color.waiver {
            background-color: #dc3545;
        }
        .legend-color.benchmark {
            background-color: #6c757d;
        }
        .result-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            border-left: 4px solid var(--primary-color);
        }
        .result-card .label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .result-card .value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a2e;
        }
        .result-card .sub {
            font-size: 0.95rem;
            color: #495057;
        }
        .rating-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .rating-badge.low {
            background: #d4edda;
            color: #155724;
        }
        .rating-badge.average {
            background: #fff3cd;
            color: #856404;
        }
        .rating-badge.high {
            background: #f8d7da;
            color: #721c24;
        }
        .benchmark-bar {
            height: 8px;
            border-radius: 4px;
            background: #e9ecef;
            margin-top: 0.25rem;
            position: relative;
            overflow: visible;
        }
        .benchmark-bar .fill {
            height: 100%;
            border-radius: 4px;
            background: var(--primary-color);
            transition: width 0.6s ease;
        }
        .benchmark-bar .marker {
            position: absolute;
            top: -6px;
            width: 2px;
            height: 20px;
            background: #dc3545;
            border-radius: 1px;
        }
        .benchmark-bar .marker-label {
            position: absolute;
            top: -20px;
            font-size: 0.7rem;
            color: #dc3545;
            transform: translateX(-50%);
            white-space: nowrap;
        }
        .cost-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            font-size: 0.95rem;
        }
        .cost-table th,
        .cost-table td {
            padding: 0.6rem 0.75rem;
            border-bottom: 1px solid #dee2e6;
            text-align: right;
        }
        .cost-table th:first-child,
        .cost-table td:first-child {
            text-align: left;
        }
        .cost-table th {
            background: #f1f3f5;
            font-weight: 600;
        }
        .cost-table tr:hover {
            background: #f8f9fa;
        }
        .glossary-term {
            font-weight: 600;
            color: var(--primary-color);
        }
        .insight-box {
            background: #e8f4fd;
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
            border-left: 4px solid #0d6efd;
        }
        .insight-box i {
            color: #0d6efd;
            margin-right: 0.5rem;
        }
        .cost-impact-note {
            background: #f1f3f5;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            margin: 1rem 0;
            font-size: 0.95rem;
        }
        .cost-impact-note strong {
            color: #1a1a2e;
        }
        .disclaimer-footnote {
            font-size: 0.8rem;
            color: #6c757d;
            border-top: 1px solid #dee2e6;
            padding-top: 0.75rem;
            margin-top: 0.75rem;
        }
        @media (max-width: 768px) {
            .result-card .value {
                font-size: 1.4rem;
            }
            .legend {
                gap: 0.75rem;
            }
        }