.result-row:last-child {
            border-bottom: none;
        }
        .property-table th,
        .property-table td {
            padding: 0.7rem 0.8rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 0.8rem 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }
        .legend-color.base {
            background-color: #0d6efd;
        }
        .legend-color.bonus {
            background-color: #28a745;
        }
        .legend-color.commission {
            background-color: #ffc107;
        }
        .legend-color.total {
            background-color: #dc3545;
        }
        .chart-bar {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 0.4rem 0;
        }
        .chart-bar .label {
            width: 100px;
            text-align: right;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .chart-bar .bar-track {
            flex: 1;
            height: 24px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        .chart-bar .bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.4s ease;
            min-width: 4px;
        }
        .chart-bar .bar-value {
            width: 70px;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: left;
        }
        .unit-note {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .input-group-custom {
            margin-bottom: 0.8rem;
        }
        .coord-input {
            margin-bottom: 0.4rem;
        }
        .badge-pill-custom {
            font-size: 0.8rem;
            background: #e9ecef;
            color: #333;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            margin-left: 0.5rem;
        }
        .tax-bracket-note {
            font-size: 0.85rem;
            color: #495057;
            background: #f8f9fa;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid #dee2e6;
            margin: 0.5rem 0;
        }
        .glossary-item {
            display: flex;
            gap: 0.8rem;
            margin: 0.6rem 0;
            padding: 0.5rem 0.8rem;
            background: #f8f9fa;
            border-radius: 4px;
        }
        .glossary-item .term {
            font-weight: 600;
            min-width: 100px;
        }
        .glossary-item .def {
            color: #495057;
        }
        @media (max-width: 576px) {
            .chart-bar .label {
                width: 60px;
                font-size: 0.75rem;
            }
            .chart-bar .bar-value {
                width: 50px;
                font-size: 0.75rem;
            }
            .chart-bar {
                gap: 0.4rem;
            }
        }