/* public/css/report_card.css */

/* Custom scrollbar for filter containers */
.checkbox-container::-webkit-scrollbar {
    width: 8px;
}
.checkbox-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.checkbox-container::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 10px;
}
.checkbox-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* We only keep the .no-print class to hide elements from the PDF. */
@media print {
  .no-print {
    display: none !important;
  }
}

/* 
  Removed the .pdf-generating styles as they are no longer needed.
  The new method builds the PDF programmatically instead of cloning the DOM.
*/