.card-entry {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1rem 1rem 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #e9ecef;
            transition: 0.2s;
        }
        .card-entry:hover {
            border-color: #adb5bd;
        }
        .card-entry .row {
            align-items: end;
        }
        .remove-card-btn {
            color: #dc3545;
            background: none;
            border: none;
            font-size: 1.3rem;
            line-height: 1;
            padding: 0 0.25rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .remove-card-btn:hover {
            transform: scale(1.2);
            color: #b02a37;
        }
        .strategy-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-right: 0.5rem;
        }
        .strategy-snowball {
            background: #d1e7dd;
            color: #0a5e3a;
        }
        .strategy-avalanche {
            background: #cfe2ff;
            color: #084298;
        }
        .result-card {
            background: white;
            border-radius: 10px;
            padding: 1.25rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
            height: 100%;
        }
        .result-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }
        .result-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        .progress-debt {
            height: 24px;
            border-radius: 12px;
            background-color: #e9ecef;
            overflow: hidden;
            margin: 0.5rem 0;
        }
        .progress-debt .progress-bar {
            background: linear-gradient(90deg, #0d6efd, #0a58ca);
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 24px;
            color: #fff;
            text-align: right;
            padding-right: 10px;
            transition: width 0.6s ease;
        }
        .amortization-table-wrap {
            max-height: 340px;
            overflow-y: auto;
            font-size: 0.85rem;
        }
        .amortization-table-wrap table {
            width: 100%;
            border-collapse: collapse;
        }
        .amortization-table-wrap th {
            background: #f1f3f5;
            position: sticky;
            top: 0;
            z-index: 2;
            padding: 0.5rem 0.4rem;
            border-bottom: 2px solid #dee2e6;
        }
        .amortization-table-wrap td {
            padding: 0.4rem 0.4rem;
            border-bottom: 1px solid #f1f3f5;
        }
        .amortization-table-wrap tr:hover td {
            background: #f8f9fa;
        }
        .method-compare {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .method-compare .compare-card {
            flex: 1 1 200px;
            background: #fff;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid #e9ecef;
            text-align: center;
        }
        .compare-card .compare-value {
            font-size: 1.5rem;
            font-weight: 700;
        }
        .compare-card.snowball .compare-value {
            color: #198754;
        }
        .compare-card.avalanche .compare-value {
            color: #0d6efd;
        }
        .faq-highlight {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            margin: 0.5rem 0;
        }
        .disclaimer-box {
            background: #fef3cd;
            border-left: 4px solid #ffc107;
            padding: 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
            color: #664d03;
        }
        .input-group-sm-custom @media (max-width: 768px) {
            .card-entry .row>div {
                margin-bottom: 0.5rem;
            }
        }