/* Query Form Styles */
.student-query-form {
	max-width: 600px;
	margin: 50px auto;
	padding: 30px;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.student-query-form h2 {
	text-align: center;
	color: #333;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #555;
}

.form-group input[type="text"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background-color: #45a049;
}

/* Result Page Styles */
.student-result-page {
	padding: 40px 20px;
	background-size: cover;
	background-position: center;
	min-height: 100vh;
}

.student-profile {
	max-width: 900px;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.student-profile h2 {
	color: #333;
	border-bottom: 2px solid #4CAF50;
	padding-bottom: 10px;
	margin-top: 0;
}

.profile-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
}

.profile-info h3 {
	margin-top: 0;
	color: #2c3e50;
	font-size: 24px;
}

.profile-photo {
	width: 200px;
	height: 250px;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-details table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}

.profile-details th, .profile-details td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.profile-details th {
	width: 30%;
	background-color: #f8f9fa;
	font-weight: bold;
	color: #555;
}

.student-documents h3 {
	color: #2c3e50;
	margin-bottom: 15px;
}

.student-documents ul {
	list-style: none;
	padding: 0;
}

.student-documents li {
	margin-bottom: 10px;
}

.document-link {
	display: inline-block;
	padding: 8px 15px;
	background-color: #2196F3;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.document-link:hover {
	background-color: #0b7dda;
	color: white;
}

.no-results, .no-query {
	text-align: center;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	max-width: 600px;
	margin: 50px auto;
	font-size: 18px;
}