@charset "utf-8";
/* CSS Document */

@page{
	margin:0px;
	padding:0px;
	size:auto;
}

@media print{
	.container_marksheet_template1{
		 width: 96.5% !important;
    height: 97.5% !important;
	}
	
	html,body{
		height:100%;
	}
	
	.evaluation_table{
		min-width: 80% !important;
	}
}

*{
	margin:0px;
	padding:0px;
}


.container_marksheet_template1{
    width: 97%;
    height: 94%;
    page-break-after: always;
    border-width: thick;
    border-style: double;
    border-color: red;
    /* padding: 20px 1.5%; */
    margin-left: 1%;
    margin-top: 1%;
	background:#f0e68c;
	font-family:calibri;
	margin-bottom:1%;
}

.content_container_template1{
	padding: 10px 1%;
}

.header_template1{
	font-size: 12pt;
    text-transform: capitalize;
    font-family: cambria;
	margin-bottom: 0px;
}

.heading_template1{
	font-size: 18pt;
	text-transform: uppercase;
	font-weight: bold;
}

.fullstretch{
	width:100%;
}

.heading_report_template1{
    font-size: 24pt;
    font-weight: bold;
    margin-top: 11px;
    font-family: Monotype Corsiva;
    color: red;
}

.fullstretch{
	width:100%;
}

.logo_div_img_template1{
	display: inline-block;
}

.header_info_container{
	display:inline-block;
}

.student_info_template1{
	width:40%;
	display: inline-block;
	margin-top:5px;
}

.student_info_table_template1 td{
	padding-right: 5px;
}

.texttransformupper{
	text-transform: uppercase;
}

.alignleft{
	text-align: left;
}

.margintop20{
	margin-top:20px;
}

.margintop50{
	margin-top:50px;
}

.logo_div_img_template1 img{
	width:73px;
}

.evaluation_table{
	border-collapse: collapse;
	max-width: 99%;
	min-width: 60%;
    background: #ffffff54;
}

.evaluation_table td, .evaluation_table th{
	padding:1px 5px;
}

.evaluation_table th{
	text-transform: uppercase;
	color:red;
}


/* Section Styling */
.section {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Section Hover Effect */
.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Heading Styling */
h2 {
  font-size: 36px;
  color: #4a90e2;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}

h2:hover {
  color: #3071a9;
}

/* Table Styling */
.table_container {
  width: 100%;
  margin-top: 30px;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.table th,
.table td {
  padding: 14px 20px;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  color: #444;
}

.table th {
  background-color: #4a90e2;
  color: white;
  font-weight: 600;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.table td {
  border-bottom: 1px solid #f1f1f1;
  transition: background-color 0.3s ease;
}

.table td:hover {
  background-color: #f9f9f9;
}

.table td input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #444;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.table td input:focus {
  border-color: #4a90e2;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
}

/* Label Styling */
label {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

label:hover {
  color: #4a90e2;
}

/* Select Dropdown Styling */
select.form-control {
  padding: 14px 20px;
  font-size: 16px;
  width: 100%;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
  color: #444;
  transition: all 0.3s ease;
}

select.form-control:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.2);
}

/* Button Styling */
/* Submit Button Styling */
/* Success Message Styling */
#displayadd_homework_success {
  display: none;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

/* Error Message Styling */
#error_div {
  display: none;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

/* Submit Button Styling */
input[type="submit"] {
  background: linear-gradient(45deg, #4a90e2, #007bff);
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
  text-transform: uppercase;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  outline: none;
}

input[type="submit"]:hover {
  background: linear-gradient(45deg, #007bff, #4a90e2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Disabled State for Button */
input[type="submit"]:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
}

input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}