html {
    overflow-y: scroll;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.lzq-money-container {
    flex: 1;
    padding: 15px;
    background: #fff;
}

.lzq-money-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #2c5282;
    padding-bottom: 8px;
}
.lzq-money-header h2 {
    margin: 0;
    font-size: 18px;
    color: #2c5282;
}
.lzq-filter-bar {
    background: #f8f9fa;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 15px;
}
.lzq-filter-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.lzq-filter-item {
    flex: 1 1 150px;
    min-width: 120px;
}
.lzq-filter-item label {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}
.lzq-filter-item select,
.lzq-filter-item input {
    width: 100%;
    height: 32px;
    font-size: 12px;
    padding: 4px;
}
.lzq-filter-actions {
    display: flex;
    gap: 5px;
}
.lzq-toolbar {
    margin-bottom: 15px;
}
.lzq-money-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    background: white;
    border: 1px solid #dee2e6;
}
.lzq-money-table th {
    background: #f8f9fa;
    padding: 8px;
    border: 1px solid #dee2e6;
    text-align: center;
}
.lzq-money-table td {
    padding: 6px;
    border: 1px solid #dee2e6;
}
.lzq-money-table th:nth-child(1) { width:80px; }
.lzq-money-table th:nth-child(2) { width:100px; }
.lzq-money-table th:nth-child(3) { width:180px; }
.lzq-money-table th:nth-child(4) { width:220px; }
.lzq-money-table th:nth-child(5) { width:100px; }
.lzq-money-table th:nth-child(6) { width:85px; }
.lzq-money-table th:nth-child(7) { width:85px; }
.lzq-money-table th:nth-child(8) { width:85px; }
.lzq-money-table th:nth-child(9) { width:75px; }
.lzq-money-table th:nth-child(10) { width:130px; }
.lzq-leader-row-start td {
    border-top: 2px solid #2c5282;
}
.lzq-leader-row td:first-child,
.lzq-leader-row td:nth-child(2) {
    background: #e8f4f8;
    font-weight: 600;
}
.lzq-project-group-A {
    background: #f8f9fa;
}
.lzq-project-group-B {
    background: #fff;
}
.lzq-row-changed {
    background: #fff3cd !important;
}
.lzq-row-changed td {
    background: #fff3cd !important;
}
.lzq-money-table input {
    width: 100%;
    padding: 4px;
    font-size: 12px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    box-sizing: border-box;
}
.lzq-money-table input[type=number] {
    text-align: right;
}
.lzq-money-table input:read-only {
    background: #e9ecef;
}
.lzq-pagination-container {
    margin-top: 20px;
    text-align: center;
}
.lzq-pagination-info {
    font-size: 12px;
    margin-bottom: 8px;
}
.lzq-pagination {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    padding: 0;
}
.lzq-page-link {
    display: block;
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    color: #007bff;
    background: white;
    text-decoration: none;
}
.lzq-page-link:hover {
    background: #e9ecef;
}
.lzq-page-item.active .lzq-page-link {
    background: #007bff;
    color: white;
    border-color: #007bff;
}