/* KASSENBUCH CUSTOM STYLES */

:root {
    --kb-primary: #2563eb;
    --kb-light-bg: #f8fafc;
}

body {
    background-color: var(--kb-light-bg);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.92rem;
}

.navbar {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
}

#kassenbuchTabelle th,
#jahrTabelle th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    vertical-align: middle;
    white-space: nowrap;
}

#kassenbuchTabelle td,
#jahrTabelle td {
    font-size: 0.86rem;
    vertical-align: middle;
}

.inline-input {
    border: 1px solid transparent;
    background: transparent;
    width: 100%;
    padding: 2px 4px;
    border-radius: 4px;
    text-align: right;
    font-size: 0.86rem;
    transition: all 0.15s ease;
    min-width: 80px;
}

.inline-input:focus {
    border-color: var(--kb-primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.inline-input-text { text-align: left; }

tr.editing { background-color: #eff6ff !important; }

.btn-row-action {
    padding: 2px 5px;
    font-size: 0.72rem;
    line-height: 1.4;
}

tfoot tr { border-top: 2px solid var(--kb-primary) !important; }

#monatTitel, #jahrTitel {
    min-width: 200px;
    text-align: center;
}

.badge-manuell {
    font-size: 0.62rem;
    padding: 2px 4px;
}

.toast-container { z-index: 9999; }

@media print {
    body > * { display: none !important; }
    #printArea { display: block !important; }

    #printArea {
        font-family: 'Segoe UI', Arial, sans-serif;
        font-size: 9pt;
        color: #000;
        margin: 0;
        padding: 0;
    }

    .print-header {
        margin-bottom: 16px;
        padding-bottom: 10px;
        border-bottom: 2px solid #000;
    }

    .print-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 8px;
        font-size: 8.5pt;
    }

    .print-table th {
        background-color: #dbeafe !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        border: 1px solid #93c5fd;
        padding: 4px 5px;
        text-align: center;
        font-weight: bold;
        font-size: 8pt;
        line-height: 1.3;
    }

    .print-table td {
        border: 1px solid #bfdbfe;
        padding: 3px 5px;
        font-size: 8.5pt;
        line-height: 1.3;
    }

    .text-right  { text-align: right !important; }
    .text-center { text-align: center !important; }

    @page {
        margin: 12mm 10mm;
    }
}