@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;
}



/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f4f6;
    color: #333;
    line-height: 1.6;
}

/* Section Styling */
.section {
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 15px;
    box-shadow: 5px 5px 15px #d1d1d1, -5px -5px 15px #ffffff;
}

/* Table Styling */
.table_container {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    background-color: #f7fafc;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #555;
}

table td {
    font-size: 14px;
}

table td input[type="text"], 
table td input[type="number"] {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

table td input[type="text"]:focus, 
table td input[type="number"]:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Form Styling */
form {
    margin-top: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 16px;
    color: #555;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

select:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

button:hover {
    background: linear-gradient(145deg, #0056b3, #007bff);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Error and Success Messages */
#error_div, 
#displayadd_homework_success {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}

#error_div {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#displayadd_homework_success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Footer and Notes */
.date_footer {
    margin-top: 30px;
    font-size: 14px;
    color: #555;
    text-align: left;
}

