:root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --tax-color: #4a7c59;
            --refund-color: #d4a373;
            --current-year-color: #9c3587;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }
       .page-header {
            background: linear-gradient(135deg, rgba(156, 53, 135, 0.1) 0%, rgba(74, 124, 89, 0.1) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(74, 124, 89, 0.2);
            position: relative;
            overflow: hidden;   color: var(--text-color);
        }
        .current-year-badge {
            background-color: var(--current-year-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 0.5rem;
            vertical-align: middle;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0.5rem 0;
            margin-bottom: 0.5rem;
        }
        .breadcrumb-item a {
            color: var(--text-muted);
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: var(--text-color);
        }
        .tax-summary-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .summary-value.refund {
            color: var(--refund-color);
        }
        .bracket-visualization {
            margin: 2rem 0;
        }
        .bracket-bar {
            height: 40px;
            margin-bottom: 8px;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.1);
        }
        .bracket-label {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 10px;
            font-weight: 600;
            color: white;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            z-index: 2;
        }
        .bracket-percent {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 10px;
            font-weight: 600;
            color: white;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            z-index: 2;
        }
        .bracket-fill {
            height: 100%;
            transition: width 0.5s ease;
        }
        .refund-box {
            background-color: rgba(212, 163, 115, 0.05);
            border-left: 3px solid var(--refund-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            }
        .tax-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        .tax-table th, .tax-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .tax-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        .tax-table tr:nth-child(even) {
            background-color: rgba(156, 53, 135, 0.05);
        }
        .tax-table .active-bracket {
            background-color: rgba(156, 53, 135, 0.15);
            font-weight: 600;
        }
        .tax-table .current-year-row {
            background-color: rgba(156, 53, 135, 0.1);
            border-left: 4px solid var(--current-year-color);
        }
        .comparison-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .comparison-item {
            flex: 1;
            min-width: 200px;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .comparison-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--current-year-color);
            margin-bottom: 0.5rem;
        }
        .comparison-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .income-examples {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .example-btn {
            background-color: rgba(156, 53, 135, 0.1);
            border: 1px solid rgba(156, 53, 135, 0.2);
            border-radius: 4px;
            padding: 0.5rem 0.75rem;
            font-size: 0.9rem;
            color: var(--current-year-color);
            cursor: pointer;
            transition: all 0.2s;
        }
        .example-btn:hover {
            background-color: rgba(156, 53, 135, 0.2);
            transform: translateY(-2px);
        }
        .deduction-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .deduction-option {
            padding: 1rem;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .deduction-option:hover {
            border-color: var(--current-year-color);
            box-shadow: 0 2px 8px rgba(156, 53, 135, 0.1);
        }
        .deduction-option.selected {
            border-color: var(--current-year-color);
            background-color: rgba(156, 53, 135, 0.05);
        }
        .deduction-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--current-year-color);
        }
        .deduction-amount {
            font-size: 1.2rem;
            font-weight: 700;
        }
        .disclaimer-box {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 3px solid var(--warning-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .graph-legend {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .legend-item {
            display: flex;
            align-items: center;
        }
        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            margin-right: 0.5rem;
        }
        .year-comparison {
            background-color: rgba(156, 53, 135, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(156, 53, 135, 0.2);
        }