* , *::before, *::after { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	font-family: Arial, Helvetica, sans-serif;
	background: #ffffff;
	color: #222;
}

.yk-main {
	width: 100%;
	max-width: 100%;
}

.wrapper {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 14px 40px;
	background: #f7e7ce;
}

.page-card {
	background: #fff;
	border-radius: 14px;
	padding: 18px;
	box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.page-title {
	margin: 0 0 10px;
	text-align: center;
	font-size: 28px;
	line-height: 1.2;
}

.page-subtitle {
	margin: 0 0 28px;
	text-align: center;
	font-size: 24px;
	color: #c77700;
}

.section-title {
	margin: 0 0 18px;
	font-size: 24px;
	color: #111;
}

.section-subtitle {
	margin: 24px 0 14px;
	font-size: 22px;
	color: #111;
}

.form-table,
.action-table {
	width: 100%;
	border-collapse: collapse;
}

.form-table td,
.action-table td {
	padding: 10px 8px;
	vertical-align: middle;
}

.form-table td:first-child {
	width: 220px;
	font-weight: 700;
}

.centre-btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

select,
input[type="text"],
textarea {
	width: 100%;
	max-width: 520px;
	padding: 10px 12px;
	border: 1px solid #cfcfcf;
	border-radius: 8px;
	background: #fff;
	font-size: 15px;
	color: #111;
}

input[disabled],
textarea[disabled] {
	background: #f6f6f6;
	color: #666;
}

.btn {
	width: 100%;
	max-width: 520px;
	padding: 12px 16px;
	border: 0;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: transform .15s ease, opacity .15s ease;
}

.btn:hover {
	transform: translateY(-1px);
	opacity: .96;
}

.btn-update {
	background: #c77700;
	color: #fff;
}

.btn-add {
	background: #198754;
	color: #fff;
}

.btn-reset {
	background: #495057;
	color: #fff;
}

.feedback-box {
	min-height: 140px;
	resize: vertical;
}

#gov_1234 {
	margin: 12px 0 6px;
}

#change_text h2 {
	margin: 24px 0 10px;
	font-size: 22px;
}

.loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #555;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	display: none;
}

@keyframes spin {
	0%   { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
	.wrapper {
		padding: 12px 10px 24px;
	}

	.page-card {
		padding: 14px;
		border-radius: 12px;
	}

	.page-title {
		font-size: 24px;
	}

	.page-subtitle,
	.section-title,
	.section-subtitle,
	#change_text h2 {
		font-size: 20px;
	}

	.form-table,
	.form-table tbody,
	.form-table tr,
	.form-table td,
	.action-table,
	.action-table tbody,
	.action-table tr,
	.action-table td {
		display: block;
		width: 100%;
	}

	.form-table td:first-child {
		width: 100%;
		padding-bottom: 4px;
	}

	.action-table td {
		padding: 8px 0;
	}

	.btn,
	select,
	input[type="text"],
	textarea {
		max-width: 100%;
	}
}
