/* Report Styles */
/* 1. CSS custom properties for theming */
:root {
    --primary-color: rgb(70, 130, 180);
    --text-primary: #111827;
    --text-secondary: #6b7280;
    
    --font-main: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
  }
  
  /* 2. Reusable utility classes */
  .text-right { text-align: right; }
  .text-center { text-align: center; }
  .font-bold { font-weight: 700; }
  .mb-2 { margin-bottom: var(--spacing-md); }
  
  /* 3. BEM naming convention */
  .report {
    &__header {
      text-align: center;
    }
    
    &__table {
      width: 100%;
      border-collapse: collapse;
    }
    
    &__cell {
      padding: var(--spacing-sm);
      
      &--amount {
        text-align: right;
      }
    }
  }  

/* General Styles */
#financialReport {
    font-family: 'Inter', sans-serif;
    color: #111827;
    line-height: 1.6;
}

#financialReport h1, #financialReport h2, #financialReport h3 {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
}
#financialReport h3 {
    font-size: 12pt !important;
    color: white;
    padding: 3px;
}

/* #financialReport p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #6b7280;
} */

/* Table Styles */
#financialReport table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

#financialReport th, #financialReport td {
    border: 1px solid #d1d5db;
    border: 1px solid white;
    padding: 0.75rem;
    padding: 0;
}

#financialReport th {
    background-color: #4682B4;
    font-family: 'Poppins';
    font-size: 10pt;
    color: white;
    font-weight: 400;
    text-align: center;
    padding: 3px;
}

#financialReport td {
    background-color: lightsteelblue;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 10pt;
    font-family: 'poppins', 'Franklin Gothic Medium', 'Arial Narrow';
    font-weight: 300;
    vertical-align: top;
    text-align: left;
}

/* Currency Formatting */
#financialReport td.amount {
    text-align: right;
}

/* Bold Totals */
#financialReport tr.total-row td {
    font-weight: 600;
}

/* Notes and Smaller Text */
#financialReport .note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Page Break for Printing */
@media print {
    .page-break {
        page-break-before: always;
    }
}
#financialReport .logo {
    font-size: 19pt;
    margin-bottom: 0;
    color: rgb(70, 130, 180);
    text-align: left;
}
  #financialReport .address {
    text-align: left;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #6b7280;
    width: 206px;
    line-height: 110%;
    font-size: 8pt;
    font-family: 'Poppins';
}
.report-title {
  font-size: 26pt;
  line-height: 80%;
  margin-top: 1px;
  font-family: 'Poppins';
}

.report-hero {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 50px;
    margin-top: -100px;
}
.report-period {
font-size: 10pt;
font-weight: 300;
margin-top: 3px;
color: #6b7280;
text-align: left;
line-height: 110%;
font-family: 'Poppins';
}
.report-title-main {
    font-size: 25pt;
    color: rgb(36, 36, 39);
    text-align: left !important;
    line-height: 80%;
    font-family: 'Poppins';
    font-stretch: extra-condensed;
}

.report-title-sub {
    font-size: 40pt;
    color: rgb(36, 36, 39);
    text-align: left !important;
    line-height: 80%;
    font-family: 'Poppins';
    font-stretch: extra-condensed;
    margin-top: 2px;
}