* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.page-container {
	display: flex;
	flex-direction: column;
	height: 100vh;
}
		
body {
	font-family: 'Roboto', sans-serif;
	background-color: #1a1a2e;
	color: #e6e6e6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	line-height: 1.6;
}

p {
	margin-bottom: 1.2em;
}

/* Link styles */
a {
	color: #8bb8fe;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	border-bottom: 1px solid transparent;
}

a:hover {
	color: #b8d3ff;
	border-bottom: 1px solid #b8d3ff;
}

a:visited {
	color: #c4a7ff;
}

a:visited:hover {
	color: #d4bfff;
	border-bottom: 1px solid #d4bfff;
}

a:active {
	color: #ffa6a6;
	border-bottom: 1px solid #ffa6a6;
}

.header {
	background-color: #16213e;
	padding: 0.25rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	position: relative;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header h1 {
	color: #e6e6e6;
	font-family: 'Roboto Mono', monospace;
	font-size: 1.5rem;
	font-weight: 500;
}

.back-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #8bb8fe;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-size: 0.9rem;
	border: 1px solid #8bb8fe;
	transition: all 0.2s ease-in-out;
	background-color: transparent;
}

.back-button:hover {
	background-color: #8bb8fe;
	color: #16213e;
	border-bottom: 1px solid #8bb8fe;
}

.back-button:active {
	transform: translateY(1px);
}

.content {
	flex: 1;
	padding: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.footer {
	background-color: #16213e;
	padding-top: 5px;
	height: 60px;
	text-align: center;
	font-size: 0.9rem;
	color: #b3b3b3;
}

/* Font classes */
.devanagari, .hi {
	font-family: 'Noto Sans Devanagari', sans-serif;
	font-size: 1.1em;
}

.telugu, .te {
	font-family: 'Noto Sans Telugu', sans-serif;
	font-size: 1.075em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.content {
		padding: 1rem;
	}
	
	.header-content {
		padding: 0 0.5rem;
	}

	.back-button {
		padding: 0.4rem 0.8rem;
		font-size: 0.85rem;
	}
}
