@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

@page {
    size: A4;
    margin: 0.5cm;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.2;
    color: #333;
    background-color: #fff;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */
@media (max-width: 768px) {
  body, .container_marksheet_template1 {
    font-size: 8.5pt;
  }

  .header_template1 {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .logo_div_img_template1 img {
    width: 60px;
    margin: 0 auto;
  }

  .heading_template1 {
    font-size: 14pt;
  }

  .heading_report_template1 {
    font-size: 12pt;
  }

  .student_info_template1 {
    width: 100%;
    padding: 4px 0;
  }

  .student_info_table_template1 td {
    font-size: 8pt;
  }

  .table1_template1,
  .evaluation_table,
  .specific_participation_table,
  .promotion_table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 8pt;
  }

  .flexbox-row-spacearound-start {
    flex-direction: column;
    align-items: center;
  }
  
  .summary-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .signature_container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .signature_container > div {
    width: 80%;
  }

  .congratulate_message {
    font-size: 10pt;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  body, .container_marksheet_template1 {
    font-size: 8pt;
  }

  .heading_template1 {
    font-size: 12pt;
  }

  .heading_report_template1 {
    font-size: 11pt;
  }

  .student_info_table_template1 td {
    font-size: 7.5pt;
  }

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  width: 100%;
  min-width: 600px;
}

  table th, table td {
    padding: 3px;
  }

  .congratulate_message {
    font-size: 9pt;
  }
}


@media print {
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .container_marksheet_template1 {
        page-break-after: always !important;
    }
}

/* --- Main Container --- */
.container_marksheet_template1 {
    width: 100%;
    height: auto;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid #8B0000;
    padding: 0;
    margin: 0 auto;
}

.content_container_template1 {
    padding: 10px 1.5%;
}

/* --- Header Section --- */
.header_template1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    border-bottom: 1px solid #8B0000;
}

.logo_div_img_template1 img {
    width: 70px;
    height: auto;
    margin-right: 20px;
}

.header_institution {
    text-align: center;
}

.heading_template1 {
    font-size: 18pt;
    font-weight: 700;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heading_code_info_template1 {
    font-size: 9pt;
    font-weight: 600;
    color: #666;
    margin-bottom: 2px;
}

.header_contact_info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.heading_address_template1, 
.contact_template1 {
    font-size: 9pt;
    font-weight: bold;
    color: #666;
    text-transform: none;
}

.contact_separator {
    font-size: 9pt;
    font-weight: bold;
    color: #666;
}

/* --- Report Title Section --- */
.header_info_container {
    padding: 10px 0;
    margin-bottom: 5px;
    text-align: center; 
}

.heading_report_template1 {
    font-size: 14pt;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.year_template1 {
    font-size: 10pt;
    font-weight: 500;
    color: #666;
}

/* --- Student Info Section --- */
.student_info_section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px 0;
}

.student_info_template1 {
    width: 45%; 
    padding: 3px 2%; 
}

.student_info_table_template1 {
    width: 100%;
    border-collapse: collapse;
}

.student_info_table_template1 td {
    padding: 2px 5px;
    font-size: 9pt;
    text-align: left; 
}

.student_info_table_template1 td:nth-child(2) {
    width: 5px;
    padding: 0;
    text-align: center;
}

.student_info_table_template1 td:first-child {
    font-weight: 600;
    color: #333;
    width: 30%;
}

/* --- Scholastic Table --- */
.table1_container_template1 {
    margin: 5px auto;
    width: 100%;
}

.table1_template1 {
    border-collapse: collapse;
    width: 100%;
    overflow: hidden;
}

.table1_template1 th {
    background-color: #8B0000;
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 9pt;
    border: 1px solid #dcdcdc;
}

.table1_template1_subjects {
    color: #8B0000;
    padding: 5px;
    font-size: 9pt; 
    font-weight: bold;
    text-transform: uppercase;
}

.table1_template1 td {
    padding: 4px;
    text-align: center;
    font-size: 9pt; 
    border: 1px solid #dcdcdc;
}

.table1_template1 tr:nth-child(even) {
    background-color: #fef3f3; 
}

.table1_template1 tr:nth-child(odd) {
    background-color: #ffffff;
}

.table1_template1 .alignleft {
    text-align: left;
    padding-left: 5px;
}

/* --- Co-Scholastic & Social Traits Table --- */
.evaluation_table {
    overflow: hidden;
    margin-top: 10px;
}

.evaluation_table th {
    background-color: #8B0000;
    color: white;
    border: 1px solid #dcdcdc;
    padding: 5px;
    font-size: 9pt;
}

.evaluation_table td {
    text-align: left;
    font-size: 9pt;
    padding: 4px;
}

/* --- Specific Participation and Remarks --- */
.specific_participation_table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #dcdcdc;
    overflow: hidden;
    margin-top: 10px;
}

.specific_participation_table td {
    padding: 4px;
    font-size: 9pt;
    border: none;
    text-align: left;
    line-height: 1.4;
}

.specific_participation_table th {
    background-color: #8B0000;
    color: white;
    padding: 5px;
    font-size: 9pt;
    text-align: center;
}

/* --- Promotion and New Session --- */
.congratulate_message {
    font-size: 11pt;
    font-weight: 600;
    color: #8B0000;
    text-align: center;
}

.promotion_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.promotion_table td {
    font-size: 10pt;
    font-weight: 600;
    text-align: left;
    border: none;
}

/* --- Summary Section --- */
.flexbox-row-spacearound-start {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 5px auto;
}

.summary-item {
    width: 24%; 
    text-align: center;
}

.student_info_table_template2 {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.student_info_table_template2 th,
.student_info_table_template2 td {
    padding: 1px;
    font-size: 9pt;
    white-space: nowrap;
    text-align: center; 
}

.student_info_table_template2 th.alignleft {
    padding-right: 5px;
    text-align: right; 
}

.student_info_table_template2 th.colon {
    width: 5px;
    padding: 0;
    text-align: center;
}

.student_info_table_template2 td {
    width: 50%;
    padding-left: 5px;
    text-align: left; 
}

/* --- Signature Section --- */
.signature_container {
    margin: 5px;
    display: flex;
    justify-content: space-around; 
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.signature_container > div {
    text-align: center; 
    width: 30%; 
}

.signature_container .student_info_table_template1 {
    margin-top: 30px; 
}

.signature_container .student_info_table_template1 td {
    text-align: center; 
    font-weight: 600;
    font-size: 9pt;
    color: #333;
    border-top: 1px solid #333;
}

/* --- Footer Note --- */
.disclaimer {
    font-style: italic;
    color: #e74c3c;
    margin-top: 20px;
    font-size: 9pt !important;
    text-align: center;
}

/* --- Utility Classes --- */
.fullstretch { width: 100%; }
.margintop5 { margin-top: 5px; }
.margintop10 { margin-top: 10px; }
.margintop20 { margin-top: 10px; }
.margintop50 { margin-top: 15px; }
.texttransformupper { text-transform: uppercase; }
.alignleft { text-align: left; }