@charset "utf-8";

 @page {
      margin: 0;
      padding: 0;
      size: auto;
    }

    /* General Styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Calibri', 'Segoe UI', Arial, sans-serif;
      line-height: 1.3;
      color: #333;
      background-color: #f5f5f5;
    }

    /* Container Styling */
    .container_marksheet_template1 {
      width: 100%;
      height: 100%;
      border: 1px solid #cccccc;
      margin: 0 auto;
      background: #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .content_container_template1 {
      padding: 15px 2%;
    }

    /* Header Styling */
    .header_template1 {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #eaeaea;
    }

    .logo_div_img_template1 img {
      width: 70px;
      height: auto;
      margin-right: 15px;
    }

    .header_institution {
      margin-left: 10px;
      text-align: center;
    }

    .heading_template1 {
      font-size: 20pt;
      text-transform: uppercase;
      font-weight: bold;
      color: #003366;
      letter-spacing: 0.5px;
      margin-bottom: 2px;
    }

    .heading_code_info_template1 {
      font-size: 10pt;
      font-weight: bold;
      color: #555555;
    }

    .heading_address_template1, .contact_template1 {
      font-size: 9pt;
      font-weight: bold;
      color: #666666;
    }

    .heading_report_template1 {
      font-size: 16pt;
      font-weight: bold;
      color: #003366;
      margin-bottom: 4px;
    }

    .year_template1 {
      font-size: 11pt;
      color: #444444;
      font-weight: bold;
    }

    /* Student Info Section */
    .student_info_template1 {
      width: 49%;
      display: inline-block;
      vertical-align: top;
      padding: 10px 5px;
    }

    .student_info_table_template1 {
      width: 100%;
      border-collapse: collapse;
    }

    .student_info_table_template1 td {
      padding: 0;
      border-bottom: 1px solid #f0f0f0;
    }

    /* Tables Styling */
    .table1_container_template1 {
      margin-top: 10px;
    }

    .table1_template1 {
      border-collapse: collapse;
      width: 98%;
      margin: 0 auto;
      border: 1px solid #d9d9d9;
      font-size: 9pt;
    }

    .table1_template1 th {
      background-color: #003366;
      color: white;
      font-weight: bold;
      text-align: center;
      padding: 4px;
    }

    .table1_template1 td {
      padding: 4px;
      text-align: center;
      border: 1px solid #d9d9d9;
    }

    .table1_template1 tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    .alignleft {
      text-align: left;
    }

    .alignright {
      text-align: right;
    }

    .aligncenter {
      text-align: center;
    }

    .texttransformupper {
      text-transform: uppercase;
    }

    /* Utility Classes */
    .fullstretch {
      width: 100%;
    }

    .margintop5 {
      margin-top: 5px;
    }

    .margintop10 {
      margin-top: 10px;
    }

    .margintop20 {
      margin-top: 20px;
    }

    .margintop35 {
      margin-top: 35px;
    }

    .marginbottom10 {
      margin-bottom: 10px;
    }

    .flexbox-row-spacearound-start {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .fontsize11 {
      font-size: 11pt;
    }

    .evaluation_table {
      width: 98%;
      margin: 0 auto;
    }

    .tablelayout_fixed {
      table-layout: fixed;
      width: 100%;
    }
    
    .transparent_table {
    	border-collapse: collapse;
    	max-width: 99%;
    	min-width: 60%;
    	background: none;
    	border: none transparent;
    }
    
    .container_marksheet_template1.fullstretch label {
      display: block;
      font-weight: 600;
      font-size: 14px;
      color: #333;
      /*margin-bottom: 2px;*/
      text-align: center;
        /*padding: 5px 6px;*/
    }

    .container_marksheet_template1.fullstretch select,
    .container_marksheet_template1.fullstretch input[type="date"] {
      width: 50%;
      padding: 5px 6px;
      margin-bottom: 1px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      transition: border-color 0.3s;
    }
    
    .container_marksheet_template1.fullstretch select:focus,
    .container_marksheet_template1.fullstretch input[type="date"]:focus {
      border-color: #3f51b5;
      outline: none;
    }
    
    .fullstretch button#submit_marksheet {
      background: #3f51b5;
      color: #fff;
      font-size: 15px;
      padding: 10px 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
      margin-top: 6px;
    }
    
    .fullstretch button#submit_marksheet:hover {
      background: #2c3e99;
    }

    .congratulate_message {
        font-size: 14pt;
    }
    
/* Print styles */
@media print {
  body {
    -webkit-print-color-adjust: exact; 
    print-color-adjust: exact;
  }

  .container_marksheet_template1 {
    page-break-after: always !important;
  }

  .no-print {
    display: none !important;
  }
}
