#spinner-overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 50vw;
  min-height: 10vh;
  background: #ffffff;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
}


.spinner {
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #3498db; /* Blue */
  border-radius: 50%;
  min-width: 30px;
  min-height: 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.financial-report-container-main {
                    font-family: 'Times New Roman', serif;
                    background: white;
                    padding: 20px;
                    
                    margin: 10px 0;
                }
                
                .financial-header-section-primary {
                    text-align: center;
                    margin-bottom: 20px;
                    border-bottom: 2px solid #000;
                    padding-bottom: 10px;
                }
                
                .company-name-header-main {
                    font-size: 16px;
                    font-weight: bold;
                    margin: 0;
                    line-height: 1.2;
                }
                
                .company-address-details {
                    font-size: 12px;
                    margin: 2px 0;
                    line-height: 1.1;
                }
                
                .report-title-header-main {
                    font-size: 16px;
                    font-weight: bold;
                    margin: 10px 0 5px 0;
                    text-decoration: underline;
                }
                
                .account-type-subtitle {
                    font-size: 12px;
                    margin: 0 0 5px 0;
                }
                
                .report-date-range-display {
                    font-size: 12px;
                    margin: 0 0 15px 0;
                }
                
                .financial-table-wrapper-main {
                    width: 100%;
                    border-collapse: collapse;
                    font-size: 16px;
                    margin-top: 10px;
                }
                
                .financial-table-wrapper-main th,
                .financial-table-wrapper-main td {
                    border: 1px solid #000;
                    padding: 6px 8px;
                    text-align: left;
                    vertical-align: top;
                }
                
                .financial-table-wrapper-main th {
                    background-color: #f0f0f0;
                    font-weight: bold;
                    text-align: center;
                }
                
                .amount-column-right-align {
                    text-align: right !important;
                }
                
                .opening-balance-row-style {
                    background-color: #f9f9f9;
                }
                
                .total-row-highlight-style {
                    background-color: #e0e0e0;
                    font-weight: bold;
                }
                
                .page-number-footer-right {
                    text-align: right;
                    margin-top: 10px;
                    font-size: 10px;
                }
                
                .print-button-container {
                    text-align: center;
                    margin: 15px 0;
                }
                
                .print-report-button {
                    background-color: #007bff;
                    color: white;
                    border: none;
                    padding: 10px 20px;
                    font-size: 14px;
                    border-radius: 5px;
                    cursor: pointer;
                    font-family: Arial, sans-serif;
                }
                
                .print-report-button:hover {
                    background-color: #0056b3;
                }
                
                @media print {
                    .print-button-container {
                        display: none;
                    }
                    .card, .card-header, .card-body {
                        border: none !important;
                        box-shadow: none !important;
                        background: none !important;
                        margin: 0 !important;
                        padding: 0 !important;
                    }
                    .financial-report-container-main {
                        border: none;
                        box-shadow: none;
                        margin: 0;
                        padding: 10px;
                    }
                    body * {
                        visibility: hidden;
                    }
                    .financial-report-container-main,
                    .financial-report-container-main * {
                        visibility: visible;
                    }
                    .financial-report-container-main {
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 100%;
                    }
                }
                
                .date-column-width { width: 80px; }
                .particulars-column-width { width: 200px; }
                .type-column-width { width: 80px; }
                .voucher-column-width { width: 60px; }
                .debit-column-width { width: 100px; }
                .credit-column-width { width: 100px; }