:root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --financial-green: #28a745;
            --financial-red: #dc3545;
            --financial-yellow: #ffc107;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --income-color: #2c7da0;
            --debt-color: #e83e8c;
        }
         .page-header {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.4) 0%, rgba(44, 125, 160, 0.4) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(44, 125, 160, 0.2);
            position: relative;
            overflow: hidden;   color: var(--text-color);
        }
        .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);
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.15);
        }
        .dti-score {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin: 1rem 0;
        }
        .dti-good {
            color: var(--financial-green);
        }
        .dti-warning {
            color: var(--financial-yellow);
        }
        .dti-danger {
            color: var(--financial-red);
        }
        .warning-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;
        }
        .success-box {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 3px solid var(--success-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .dti-score {
                font-size: 2rem;
            }
        }
        .financial-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .category-btn {
            background-color: rgba(44, 125, 160, 0.1);
            border: 1px solid rgba(44, 125, 160, 0.2);
            border-radius: 4px;
            padding: 0.5rem 0.75rem;
            font-size: 0.9rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.2s;
        }
        .category-btn:hover {
            background-color: rgba(44, 125, 160, 0.2);
            transform: translateY(-2px);
        }
        .dti-progress-container {
            margin: 1.5rem 0;
        }
        .dti-progress-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        .dti-progress {
            height: 10px;
            background-color: #e9ecef;
            border-radius: 5px;
            overflow: hidden;
        }
        .dti-progress-bar {
            height: 100%;
            background-color: var(--financial-green);
            transition: width 0.5s ease;
        }
        .dti-marker {
            position: absolute;
            top: -5px;
            width: 2px;
            height: 20px;
            background-color: var(--text-color);
        }
        .eligibility-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-left: 0.5rem;
        }
        .eligibility-good {
            background-color: rgba(40, 167, 69, 0.2);
            color: var(--financial-green);
        }
        .eligibility-warning {
            background-color: rgba(255, 193, 7, 0.2);
            color: var(--financial-yellow);
        }
        .eligibility-bad {
            background-color: rgba(220, 53, 69, 0.2);
            color: var(--financial-red);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        .comparison-table th, .comparison-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .comparison-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: rgba(44, 125, 160, 0.05);
        }
        .breakdown-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breakdown-item:last-child {
            border-bottom: none;
        }
        .breakdown-total {
            font-weight: 700;
            background-color: rgba(44, 125, 160, 0.1);
            border-radius: 4px;
        }
        .form-switch .form-check-input {
            height: 1.5em;
            width: 3em;
        }
        .currency-input {
            text-align: right;
            font-family: 'Courier New', monospace;
        }
        .currency-display {
            font-family: 'Courier New', monospace;
            font-weight: 600;
        }
        .interpretation-card {
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .interpretation-good {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--financial-green);
        }
        .interpretation-warning {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 4px solid var(--financial-yellow);
        }
        .interpretation-danger {
            background-color: rgba(220, 53, 69, 0.1);
            border-left: 4px solid var(--financial-red);
        }
        .monthly-breakdown {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
        }
        @media print {
            .no-print {
                display: none !important;
            }
            }