@media print {   
    /* Show only the Student Attendance Log */
    #headingOne, 
    #collapseOne{
      display: block;
    }

    .card {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border: 1px solid rgb(255, 255, 255);
        border-radius: 0rem;
    }

    table{
        width: 100% !important;
    }

    .no_print{
        width:0px; 
        visibility:hidden;
        display: none !important;
    }
    .fa-lock {
        display: none !important;
    }
    .table-responsive {
        width: 100%;
        display: block;
    }

    table#studentTable {       
        width: 100% !important;
    }
  
    #studentTable {
      border-collapse: collapse;
    }
    
    #studentTable th, #studentTable td {
      border: 1px solid #000;
      padding: 8px;
      text-align: left;     

    }
  
    /* Ensure the table is fully visible */
    .table-responsive {
      display: block !important;
    }
  
    /* Make the header visible */
    #headingOne h5,
    #headingOne button {
      display: block;
      visibility: visible;
    }
  }
  