html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
	blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
	em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
	b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
	details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
	output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
	menu, nav, section {
	display: block;
}

body {
	line-height: 1.5;
	font-size: 17.5px;
	font-family: averta_Regular,sans-serif;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}

a:link {
	color: blue;
}

a:visited {
	color: blue;
}



* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	background: #ffffff;
	color: #000000;
	line-height: 1.4;
}

a, a:visited, a:active, a:hover {
    text-decoration: none;
}

.pre-line {
	color: red;
	white-space: pre-line;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
}

#validateStatus {
	color: red;
	white-space: pre-line;
}

/* Header */
.header {
	padding: 15px 0 5px 0;
	border-bottom: 1px solid #ccc;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}

.logo:hover {
	text-decoration: none;
}

.user-area {
	font-size: 16px;
}

/* Navigation */
.nav {
	background: #f8f8f8;
	border-bottom: 1px solid #ddd;
	padding: 8px 0;
	margin-bottom: 15px;
}

.nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.nav li {
	padding: 0;
}

.nav a {
	padding: 5px 10px;
	display: inline-block;
	font-size: 16px;
}

.nav a.active {
	background: #e0e0e0;
	font-weight: bold;
	text-decoration: none;
}

/* Main Content */
.page {
	display: none;
	min-height: 500px;
	padding-bottom: 30px;
}

.page.active {
	display: block;
}

h1 {
	font-size: 24px;
	font-weight: normal;
	margin: 15px 0;
	text-align: center;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 10px 0;
}

/* Home Page Boxes */
.info-boxes {
	display: flex;
	gap: 20px;
	margin: 20px 0;
}

.info-box {
	flex: 1;
	border: 1px solid #000;
}

.info-box-header {
	background: #4A90E2;
	color: white;
	padding: 8px;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
}

.info-box-content {
	padding: 10px;
	background: #fff;
}

.info-box-content table {
	width: 100%;
	border-collapse: collapse;
}

.info-box-content td {
	padding: 5px 3px;
	border-bottom: 1px solid #eee;
}

/* Banner Frames */
.banner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 20px 0;
}

.banner-frame {
	border: 1px solid #000;
	padding: 40px 10px;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #666;
	background: #fafafa;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Forms */
.form-section {
	max-width: 600px;
	margin: 20px auto;
}

.form-group {
	margin-bottom: 12px;
}

.form-group label {
	display: block;
	margin-bottom: 4px;
	font-weight: normal;
}

.form-group input, .form-group textarea, .form-group select {
	width: 100%;
	padding: 8px;
	border: 1px solid #999;
	font-family: Arial, sans-serif;
	font-size: 16px;
}

.form-group textarea {
	resize: vertical;
	min-height: 60px;
	font-family: monospace;
}

button, .btn {
	padding: 4px 15px;
	background: #f0f0f0;
	border: 1px solid #999;
	cursor: pointer;
	font-size: 16px;
	font-family: Arial, sans-serif;
}

button:hover, .btn:hover {
	background: #e0e0e0;
}

.btn-primary {
	background: #4A90E2;
	color: white;
	border-color: #357ABD;
}

.btn-primary:hover {
	background: #357ABD;
}

/* Tables */
.data-table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
	font-size: 16px;
}

.data-table td, .data-table th {
	border: 1px solid #ccc;
	padding: 6px 8px;
	text-align: left;
}

.data-table th {
	background: #f0f0f0;
	font-weight: bold;
}

.data-table tr:nth-child(even) {
	background: #f9f9f9;
}

/* Profile Balance Box */
.balance-box {
	background: #4A90E2;
	color: white;
	padding: 10px;
	margin: 10px 0;
	border-radius: 2px;
}

.balance-box-label {
	font-size: 12px;
	opacity: 0.9;
}

.balance-box-value {
	font-size: 20px;
	font-weight: bold;
}

/* Code Display */
.code-box {
	background: #f5f5f5;
	border: 1px solid #ccc;
	padding: 10px;
	margin: 10px 0;
	position: relative;
}

.code-box textarea {
	width: 100%;
	border: none;
	background: transparent;
	font-family: monospace;
	font-size: 16px;
	resize: none;
}

.copy-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	padding: 2px 8px;
	font-size: 13px;
}

/* Pagination */
.pagination {
	text-align: center;
	margin: 15px 0;
	font-size: 13px;
}

.pagination a, .pagination span {
	padding: 3px 8px;
	margin: 0 2px;
	border: 1px solid #ccc;
	display: inline-block;
}

.pagination .current {
	background: #4A90E2;
	color: white;
	border-color: #357ABD;
}

/* Footer */
.footer {
	border-top: 1px solid #ccc;
	margin-top: 40px;
	padding: 15px 0;
	text-align: center;
	font-size: 16px;
	color: #666;
}

.footer-links {
	margin-bottom: 8px;
}

.footer-links a {
	margin: 0 5px;
}

/* Utilities */
.text-center {
	text-align: center;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.alert {
	padding: 10px;
	background: #fff3cd;
	border: 1px solid #ffc107;
	margin: 10px 0;
	font-size: 13px;
}

.login-required {
	padding: 20px;
	text-align: center;
	background: #f8f8f8;
	border: 1px solid #ddd;
	margin: 20px 0;
}

/* Responsive */
@media ( max-width : 768px) {
	.info-boxes {
		flex-direction: column;
	}
	.banner-grid {
		grid-template-columns: 1fr;
	}
	.nav ul {
		flex-direction: column;
	}
	.header-inner {
		flex-direction: column;
		gap: 10px;
	}
	.data-table {
		font-size: 16px;
	}
	.data-table td, .data-table th {
		padding: 4px;
	}
}