        /* ===== LAYOUT ===== */
        .kt-account-statement-wrap {
            max-width: 1200px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* ===== HEADER ===== */
        .kt-statement-header-bar {
            background: linear-gradient(135deg, #2271b1 0%, #1e5a96 100%);
            color: white;
            padding: 24px;
            font-size: 18px;
            font-weight: 600;
            border-bottom: 3px solid #135e96;
            margin-bottom: 20px;
            border-radius: 6px;
        }
        
        /* ===== SUMMARY SECTION ===== */
        .kt-summary-section {
            padding: 24px;
            background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
            border: 1px solid #e0e6ed;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            align-items: center;
            border-radius: 8px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .kt-balance-card {
            padding: 24px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
            font-weight: 600;
        }
        
        .kt-balance-card.kt-balance-positive {
            background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
            color: white;
        }
        
        .kt-balance-card.kt-balance-negative {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
        }
        
        .kt-balance-label {
            font-size: 13px;
            opacity: 0.9;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .kt-balance-amount {
            font-size: 32px;
            font-weight: 700;
        }
        
        .kt-summary-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .kt-summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid #ddd;
        }
        
        .kt-summary-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }
        
        .kt-summary-value {
            font-size: 16px;
            font-weight: 700;
            text-align: right;
        }
        
        .kt-summary-value.positive {
            color: #27ae60;
        }
        
        .kt-summary-value.negative {
            color: #e74c3c;
        }
        
        /* ===== JAHR SECTION ===== */
        .kt-bowling-year-section {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid #e0e6ed;
        }
        
        .kt-year-header {
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
            border-bottom: 1px solid #e0e6ed;
            transition: all 0.3s ease;
            user-select: none;
        }
        
        .kt-year-header:hover {
            background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
        }
        
        .kt-year-header.open {
            background: linear-gradient(135deg, #2271b1 0%, #1e5a96 100%);
            border-bottom-color: #135e96;
            color: white;
        }
        
        .kt-year-header.open .kt-year-label,
        .kt-year-header.open .kt-year-period {
            color: white;
        }
        
        .kt-year-header.open .kt-year-balance {
            color: white;
        }
        
        .kt-year-header-left {
            flex: 1;
        }
        
        .kt-year-label {
            font-weight: 700;
            color: #333;
            font-size: 16px;
            margin-bottom: 4px;
            transition: color 0.3s;
        }
        
        .kt-year-period {
            font-size: 12px;
            color: #999;
            transition: color 0.3s;
        }
        
        .kt-year-balance {
            font-weight: 600;
            font-size: 14px;
            margin-right: 20px;
            transition: color 0.3s;
        }
        
        .kt-year-balance.positive {
            color: #27ae60;
        }
        
        .kt-year-balance.negative {
            color: #e74c3c;
        }
        
        .kt-year-toggle {
            font-size: 24px;
            color: #2271b1;
            font-weight: 300;
            width: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .kt-year-header.open .kt-year-toggle {
            color: white;
            transform: rotate(180deg);
        }
        
        .kt-transactions-list {
                display: none;
				padding: 20px;
				background: white;
				gap: 16px;
				grid-template-columns: 1fr;
        }
        
        .kt-transactions-list.open {
            display: grid;
        }
        
        /* ===== EVENT CARD ===== */
        .kt-event-card {
            background: white;
            border: 2px solid #e0e6ed;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .kt-event-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #2271b1;
        }
        
        .kt-event-card.kt-event-paid {
            border-left: 4px solid #27ae60;
            background: #f7faf7;
        }
        
        .kt-event-card.kt-event-open {
            border-left: 4px solid #e74c3c;
            background: #fef9f7;
        }
        
        /* Event Header */
        .kt-event-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 18px;
            border-bottom: 1px solid #e0e6ed;
            background: white;
        }
        
        .kt-event-date-location {
            flex: 1;
        }
        
        .kt-event-date {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
        }
        
        .kt-event-location {
            font-size: 14px;
            color: #666;
            margin-top: 4px;
        }
        
        .kt-event-status {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            white-space: nowrap;
        }
        
        .kt-event-status.kt-status-paid {
            background: #d4edda;
            color: #155724;
        }
        
        .kt-event-status.kt-status-open {
            background: #f8d7da;
            color: #721c24;
        }
        
        .kt-status-icon {
            font-size: 16px;
        }
        
        /* Event Costs */
        .kt-event-costs {
            padding: 16px 18px;
            background: #fafbfc;
            border-bottom: 1px solid #e0e6ed;
        }
        
        .kt-cost-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .kt-cost-label {
            color: #666;
            font-weight: 500;
        }
        
        .kt-cost-value {
            font-weight: 600;
            color: #333;
        }
        
        .kt-cost-penalty .kt-cost-label {
            color: #e74c3c;
        }
        
        .kt-cost-penalty .kt-cost-value {
            color: #e74c3c;
        }
        
        .kt-cost-total {
            border-top: 2px solid #ddd;
            padding-top: 10px !important;
            margin-top: 10px !important;
            font-weight: 700;
            font-size: 15px;
        }
        
        /* Event Payments */
        .kt-event-payments {
            padding: 16px 18px;
            background: #f9fef9;
            border-bottom: 1px solid #e0e6ed;
        }
        
        .kt-payments-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .kt-payment-row {
            display: grid;
            grid-template-columns: 100px 1fr 120px;
            gap: 12px;
            padding: 8px 0;
            font-size: 13px;
            align-items: center;
        }
        
        .kt-payment-date {
            color: #999;
            font-weight: 500;
        }
        
        .kt-payment-desc {
            color: #666;
        }
        
        .kt-payment-amount {
            text-align: right;
            font-weight: 600;
        }
        
        .kt-payment-amount.positive {
            color: #27ae60;
        }
        
        .kt-payment-summary {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #ddd;
            font-size: 13px;
            color: #27ae60;
            font-weight: 600;
        }
        
        /* Event Remaining */
        .kt-event-remaining {
            padding: 16px 18px;
            background: #fef9f7;
            border-top: 2px solid #e74c3c;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .kt-remaining-label {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        
        .kt-remaining-amount {
            font-size: 18px;
            font-weight: 700;
            color: #e74c3c;
        }
        
        /* ===== MISC ===== */
        .kt-no-transactions {
            padding: 40px 20px;
            text-align: center;
            color: #999;
            font-size: 16px;
            background: white;
            border-radius: 6px;
            border: 1px solid #e0e6ed;
        }
        
        @media (max-width: 1024px) {
            .kt-transactions-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .kt-summary-details {
                grid-template-columns: 1fr;
            }
            
            .kt-summary-section {
                grid-template-columns: 1fr;
            }
            
            .kt-event-header {
                flex-direction: column;
                gap: 12px;
            }
            
            .kt-payment-row {
                grid-template-columns: 1fr;
            }
        }
		
		/* ===== PAYMENT STATUS ===== */
        .kt-payment-status {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 6px;
            margin-bottom: 12px;
            font-size: 13px;
            font-weight: 600;
        }
        
        .kt-payment-status-fully_paid {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        
        .kt-payment-status-partially_paid {
            background: #fff3cd;
            border: 1px solid #ffeeba;
            color: #856404;
        }
        
        .kt-payment-status-not_paid {
            background: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        
        .kt-payment-status-icon {
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .kt-payment-status-info {
            flex: 1;
        }
        
        .kt-payment-status-text {
            font-weight: 700;
            margin-bottom: 2px;
        }
        
        .kt-payment-status-percentage {
            font-size: 12px;
            opacity: 0.85;
            font-weight: 500;
        }
        
        /* ===== PROGRESS BAR ===== */
        .kt-payment-progress-bar {
            width: 100%;
            height: 8px;
            background: #e0e6ed;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 14px;
        }
        
        .kt-payment-progress-fill {
            height: 100%;
            transition: width 0.4s ease;
            background: linear-gradient(90deg, #27ae60 0%, #229954 100%);
        }
        
        .kt-payment-progress-fill.kt-payment-progress-partially_paid {
            background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
        }
        
        .kt-payment-progress-fill.kt-payment-progress-not_paid {
            background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
        }
        
        /* ===== PAYMENT ITEMS =====*/
        .kt-payment-items {
            background: #fafbfc;
            border-radius: 6px;
            padding: 12px;
        }
        
        .kt-payment-items-empty {
            padding: 12px;
            text-align: center;
            color: #999;
            font-style: italic;
            font-size: 13px;
            background: #fafbfc;
            border-radius: 6px;
        }
        
        /* ===== FULLY PAID STATE ===== */
        .kt-event-fully-paid {
            padding: 16px 18px;
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            border-top: 2px solid #27ae60;
            text-align: center;
            color: #155724;
            font-weight: 700;
            font-size: 14px;
        }
		
		/* ===== NEGATIVE KOSTEN STYLING ===== */
        .kt-cost-negative .kt-cost-value {
            color: #e74c3c;
            font-weight: 700;
        }
        
        .kt-cost-row.kt-cost-negative {
            background: #fef9f7;
        }
        
        .kt-cost-total.kt-cost-negative {
            background: #fef3f1;
            border-top: 2px solid #e74c3c;
            border-bottom: 2px solid #e74c3c;
            padding-top: 12px !important;
            padding-bottom: 12px !important;
            margin-top: 8px !important;
        }
        
        /* Strafen extra hervorgehoben */
        .kt-cost-penalty .kt-cost-label {
            color: #c0392b;
            font-weight: 600;
        }
        
        .kt-cost-penalty .kt-cost-value {
            color: #c0392b;
        }
        
        /* ===== POSITIVE WERTE ===== */
        .kt-payment-item-value.positive {
            color: #27ae60;
            font-weight: 700;
        }
        
        .kt-payment-item-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 14px;
            background: #f7faf7;
            border-radius: 6px;
            margin-top: 12px;
            border-left: 3px solid #27ae60;
        }
        
        .kt-payment-item-label {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        
        .kt-payment-item-value {
            font-size: 16px;
            font-weight: 700;
        }
		
		/* ===== ZUSATZ ZAHLUNGEN ===== */
        .kt-additional-payments {
            padding: 18px;
            background: linear-gradient(135deg, #f0f9ff 0%, #f5faff 100%);
            border-top: 2px solid #2271b1;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }
        
        .kt-additional-payments-title {
            font-weight: 700;
            color: #2271b1;
            margin-bottom: 14px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* ===== EINZELNE ZAHLUNGEN ===== */
        .kt-additional-payment-item {
            background: white;
            border: 1px solid #dceaf8;
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 10px;
            transition: all 0.2s ease;
        }
        
        .kt-additional-payment-item:last-of-type {
            margin-bottom: 12px;
        }
        
        .kt-additional-payment-item:hover {
            border-color: #2271b1;
            box-shadow: 0 2px 6px rgba(34, 113, 177, 0.1);
        }
        
        .kt-additional-payment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .kt-additional-payment-date {
            font-size: 13px;
            color: #666;
            font-weight: 600;
        }
        
        .kt-additional-payment-amount {
            font-size: 15px;
            font-weight: 700;
            color: #27ae60;
        }
        
        .kt-additional-payment-comment {
            font-size: 13px;
            color: #555;
            font-style: italic;
            padding: 8px;
            background: #fafbfc;
            border-left: 2px solid #2271b1;
            border-radius: 4px;
            margin: 0;
        }
        
        /* ===== SUMME ZUSATZ ZAHLUNGEN ===== */
        .kt-additional-payments-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            background: linear-gradient(135deg, #dceaf8 0%, #e8f1f9 100%);
            border-radius: 6px;
            border-left: 3px solid #2271b1;
            font-weight: 700;
        }
        
        .kt-additional-payments-total-label {
            color: #2271b1;
            font-size: 14px;
        }
        
        .kt-additional-payments-total-amount {
            color: #27ae60;
            font-size: 16px;
        }
        
        /* ===== POSITIVE WERTE ===== */
        .kt-additional-payment-amount.positive,
        .kt-additional-payments-total-amount.positive {
            color: #27ae60;
        }
		
		/* ===== UNZUGEORDNETE ZAHLUNGEN KARTE ===== */
        .kt-event-card.kt-event-unassigned {
            border-left: 4px solid #2271b1;
            background: #f0f6fb;
        }
        
/* ===== STANDALONE PAYMENT CARD ===== */
        .kt-event-card.kt-event-standalone-payment {
            border-left: 4px solid #27ae60;
            background: linear-gradient(135deg, #f7faf7 0%, #f0f8f1 100%);
        }
        
        .kt-event-card.kt-event-standalone-payment:hover {
            box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
            border-color: #229954;
        }
        
        /* ===== ZAHLUNGSBETRAG SEKTION ===== */
        .kt-standalone-payment-amount {
            padding: 16px 18px;
            background: white;
            border-bottom: 1px solid #e0e6ed;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .kt-standalone-payment-label {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        
        .kt-standalone-payment-value {
            font-size: 18px;
            font-weight: 700;
            color: #27ae60;
        }
        
        .kt-standalone-payment-value.positive {
            color: #27ae60;
        }
        
        /* ===== KOMMENTAR SEKTION ===== */
        .kt-standalone-payment-comment {
            padding: 16px 18px;
            background: #f9fbfc;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }
        
        .kt-standalone-payment-comment-label {
            font-weight: 600;
            color: #333;
            font-size: 13px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .kt-standalone-payment-comment-text {
            font-size: 14px;
            color: #555;
            padding: 10px 12px;
            background: white;
            border-left: 3px solid #27ae60;
            border-radius: 4px;
            line-height: 1.4;
        }
		
		/* ===== START BALANCE SECTION ===== */
        .kt-start-balance-section {
            margin-top: 30px;
            margin-bottom: 30px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e6ed;
        }
        
        /* ===== START BALANCE HEADER (KEIN TOGGLE) ===== */
        .kt-start-balance-header {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f7 100%);
            border-bottom: 2px solid #e0e6ed;
            gap: 16px;
        }
        
        .kt-start-balance-header-left {
            flex: 1;
        }
        
        .kt-start-balance-label {
            font-weight: 700;
            font-size: 16px;
            color: #1a1a1a;
            margin-bottom: 4px;
            letter-spacing: -0.3px;
        }
        
        .kt-start-balance-info {
            font-size: 13px;
            color: #999;
            font-weight: 500;
        }
        
        .kt-start-balance-amount {
            font-size: 20px;
            font-weight: 700;
            white-space: nowrap;
            padding: 12px 16px;
            border-radius: 6px;
            background: white;
            display: flex;
            align-items: center;
            gap: 6px;
            min-width: 140px;
            text-align: right;
            justify-content: flex-end;
            border: 1px solid #e0e6ed;
            transition: all 0.3s ease;
        }
        
        .kt-start-balance-amount.positive {
            color: #27ae60;
            border-color: #d4edda;
            background: #f7faf7;
        }
        
        .kt-start-balance-amount.negative {
            color: #e74c3c;
            border-color: #f5c6cb;
            background: #fef9f7;
        }
        
        .kt-start-balance-header:hover .kt-start-balance-amount {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        /* ===== LEERER TRANSACTIONS CONTAINER ===== */
        .kt-transactions-list-start-balance {
            padding: 16px 20px;
            background: #fafbfc;
            min-height: 0;
            display: none;
        }
        
        /* ===== RESPONSIVE =====*/
        @media (max-width: 768px) {
            .kt-start-balance-header {
                flex-wrap: wrap;
            }
            
            .kt-start-balance-amount {
                width: 100%;
                justify-content: flex-end;
                order: 3;
                flex-basis: 100%;
            }
            
            .kt-start-balance-header-left {
                width: 100%;
                flex-basis: 100%;
                order: 1;
            }
        }