:root {
	--sidebar-width: 250px;
	--sidebar-bg: #343a40;
	--primary-green: #198754;
	--light-bg: #f4f6f9;
	--header-height: 60px;
	--footer-height: 50px;
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #007bff;
	--secondary: #6c757d;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-sans-serif: "Anek Bangla", sans-serif;
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--body-font-size: 0.9rem;
}

body {
	font-family: var(--font-family-sans-serif);
	font-size: var(--body-font-size);
	background-color: var(--light-bg);
	margin: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
	color: #2c3e50;
}

[tabindex="-1"]:focus:not(:focus-visible) {
	outline: 0 !important;
}

#nprogress .spinner {
	top: 75px;
	right: 20px;
}

/*
.form-control, 
.form-select, 
.input-group-text {
    padding: 7px 12px !important;
    font-size: 0.9rem !important;
    min-height: calc(1.5em + 0.75rem + 2px);
}
*/

.form-control, 
.form-select, 
.input-group-text {
	padding: 7px 12px !important;
	font-size: 0.9rem !important;
	line-height: 1.5 !important;
	height: auto !important;
	min-height: 40px !important;
}

.form-select {
	display: block;
	width: 100%;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
}

textarea.form-control {
	padding: 8px 12px !important;
}

.input-group-text i {
	font-size: 0.85rem;
	width: 16px;
	text-align: center;
}

.section-header, .section-title {
	padding: 8px 15px !important;
	margin-top: 20px !important;
	margin-bottom: 15px !important;
}

#wrapper {
	display: flex;
	flex: 1;
	overflow: hidden;
}

.row > * {
	margin-top: 5px;
}

#sidebar {
	min-width: var(--sidebar-width);
	max-width: var(--sidebar-width);
	background: var(--sidebar-bg);
	color: #fff;
	transition: all 0.3s;
	z-index: 1030;
	overflow-y: auto;
}

#sidebar.active {
	margin-left: calc(-1 * var(--sidebar-width));
}

#content-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.copyright-text {
	letter-spacing: 0.2px;
}

.developer-info a:hover {
	text-decoration: underline !important;
	color: #157347 !important;
}

.doe-logo {
	width: 80px;
	margin-bottom: 10px;
}

.fixed-header {
	height: var(--header-height);
	background: #fff;
	border-bottom: 1px solid #dee2e6;
	padding: 0 20px;
	display: flex;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1020;
}

.main-content {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	background-color: var(--light-bg);
}

.fixed-footer {
	height: var(--footer-height);
	background: #fff;
	border-top: 1px solid #dee2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	bottom: 0;
	z-index: 1020;
}

.sidebar-header {
	padding: 15px;
	background: rgba(0,0,0,0.2);
	border-bottom: 1px solid #4b545c;
	display: flex;
	align-items: center;
}

.nav-link {
	color: #c2c7d0;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	transition: 0.2s;
}

.nav-link:hover, .nav-link.active {
	color: #fff;
	background-color: rgba(255,255,255,0.1);
}

.nav-link i {
	width: 30px;
}

.menu-open-icon {
	margin-left: auto;
	transition: transform 0.3s;
}

.collapsed .menu-open-icon {
	transform: rotate(0deg);
}

.nav-link:not(.collapsed) .menu-open-icon {
	transform: rotate(90deg);
}

.card {
	border: none;
	box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
}

.info-box {
	background: #fff;
	border-radius: 5px;
	display: flex;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 0 0 1px rgba(0,0,0,.125);
}

.info-box-icon {
	width: 60px;
	height: 60px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
}

.form-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
	border-top: 5px solid #198754;
}

.error-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
	border-top: 5px solid #dc3545;
}

.header-section {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.home-link {
	/* position: absolute; */
	top: 0;
	right: 0;
	text-decoration: none;
	color: #198754;
	font-weight: 600;
	transition: color 0.3s;
}

.home-link:hover {
	color: #146c43;
	text-decoration: none;
}

.section-header {
	background-color: #f8f9fa;
	padding: 12px 20px;
	border-left: 5px solid #198754;
	margin-top: 15px;
	margin-bottom: 50px;
	font-weight: 600;
	color: #198754;
	display: flex;
	align-items: center;
}

.section-header i {
	margin-right: 10px;
}

.form-label {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.label-en {
	display: block;
	font-size: 0.8rem;
	font-weight: 400;
	color: #6c757d;
}

.form-control, .form-select {
	border-radius: 8px;
	border: 1px solid #ced4da;
	padding: 10px;
}

.form-control:focus {
	border-color: #198754;
	box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.btn-submit {
	background-color: #198754;
	border: none;
	padding: 12px 35px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-submit:hover {
	background-color: #146c43;
	transform: translateY(-2px);
}

.btn-draft {
	background-color: #6c757d;
	border: none;
	padding: 12px 35px;
	font-weight: 600;
	color: white;
}

.btn-register {
	background-color: #198754;
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-register:hover {
	background-color: #146c43;
	transform: translateY(-2px);
}

.btn-login {
	background-color: #198754;
	color: white;
	font-weight: 600;
	padding: 10px;
	transition: 0.3s;
}

.btn-login:hover {
	background-color: #146c43;
	color: white;
}

.input-group-text {
	background-color: #f8f9fa;
}

.unit-text {
	font-size: 0.85rem;
	color: #198754;
	margin-bottom: 15px;
	display: block;
}

.app-badge {
	height: 40px;
	transition: opacity 0.2s;
}

.app-badge:hover {
	opacity: 0.8;
}

.step-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 35px;
	height: 35px;
	background-color: #198754;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.step-box {
	position: relative;
	padding-left: 50px;
	margin-bottom: 30px;
}

.qr-wrapper {
	background: #f8f9fa;
	border: 2px dashed #dee2e6;
	padding: 20px;
	border-radius: 12px;
	display: inline-block;
	margin: 5px 0;
}

.secret-key-display {
	background: #e9ecef;
	padding: 8px 15px;
	border-radius: 6px;
	font-family: 'Monaco', 'Consolas', monospace;
	font-weight: 600;
	letter-spacing: 1px;
	color: #d63384;
	border: 1px solid #ced4da;
}

.otp-card {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	text-align: center;
	max-width: 480px;
	width: 100%;
	border-top: 6px solid #198754;
}

.otp-header i {
	font-size: 3.5rem;
	color: #198754;
	margin-bottom: 15px;
}

.otp-input-wrapper {
	max-width: 350px;
	margin: 0 auto;
}

.otp-input {
	width: 45px;
	height: 55px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	background-color: #f8f9fa;
	transition: all 0.2s ease-in-out;
	color: #212529;
}

.otp-input:focus {
	border-color: #198754;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(25, 135, 84, 0.15);
	outline: none;
}

.btn-activate {
	background-color: #198754;
	color: white;
	font-weight: 600;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	transition: 0.3s;
}

.btn-activate:hover {
	background-color: #146c43;
	color: white;
	transform: translateY(-2px);
}

.btn-verify {
	background-color: #198754;
	color: #fff;
	font-weight: 600;
	padding: 14px;
	width: 100%;
	border-radius: 10px;
	border: none;
	font-size: 1.1rem;
	transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-verify:hover {
	background-color: #146c43;
	color: #fff;
}

.radio-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.radio-item {
	display: flex;
	align-items: center;
}

.radio-item input[type="radio"] {
	margin-right: 10px;
	cursor: pointer;
}

.radio-item label {
	cursor: pointer;
	font-size: 15px;
	color: #555;
}

.report-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 20px;
	margin-top: 50px;
	margin-bottom: 50px;
	border-top: 5px solid #198754;
}

.data-label {
	font-size: 0.85rem;
	color: #6c757d;
	font-weight: 400;
	display: block;
	margin-bottom: 2px;
}

.data-value {
	font-weight: 600;
	color: #212529;
	font-size: 1.1rem;
	display: block;
}

.badge-custom {
	padding: 8px 15px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
}

.table-custom th {
	background-color: #fbfbfb;
	color: #555;
	font-weight: 600;
}

.qr-code-wrapper {
	z-index: 10;
	right: 0;
	top: -10px;
}

.login-card {
	width: 100%;
	max-width: 450px;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	border-top: 6px solid #198754;
}

.resend-text {
	margin-top: 25px;
	font-size: 0.95rem;
}

.resend-link {
	color: #198754;
	text-decoration: none;
	font-weight: 700;
}

.resend-link:hover {
	text-decoration: underline;
}

#status-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 20px;
	font-size: 0.8rem;
	position: relative;
	width: 100%;
	color: #fff;
}

.status-content {
	flex-grow: 1;
	text-align: center;
}

.status-close {
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1.1rem;
	cursor: pointer;
	opacity: 0.7;
	transition: 0.2s;
	padding: 0 5px;
	line-height: 1;
}

.status-close:hover {
	opacity: 1;
	transform: scale(1.1);
}

#top-status-bar .label-en {
	font-weight: 400;
	opacity: 0.9;
	margin-left: 8px;
}

#back-to-top, #go-to-bottom {
    position: fixed;
    right: 30px;
    z-index: 999;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
}

#back-to-top {
    bottom: 85px;
}

#go-to-bottom {
    bottom: 30px;
}

#back-to-top:hover, #go-to-bottom:hover {
    background: #0056b3;
    transform: scale(1.1);
    color: #fff;
}

.error-container pre {
	background-color: #f8f9fa !important;
	border-left: 3px solid var(--gray) !important;
	color: #2c3e50;
	overflow-x: auto;
}

.error-container .table td {
	padding: 8px 12px !important;
	border-bottom: 1px solid #f1f1f1;
}

.error-container .table tr:last-child td {
	border-bottom: none;
}

.error-container .badge {
	font-size: 0.75rem;
	padding: 4px 8px;
	letter-spacing: 0.5px;
}

.error-container .section-header-error h6 {
	font-size: 0.95rem;
}

.section-header-error {
	background-color: #f4f6f9 !important;
	padding: 8px 15px !important;
	border-left: 5px solid #6c757d !important;
	margin-top: 20px !important;
	margin-bottom: 15px !important;
	font-weight: 600;
	color: #6c757d !important;
	display: flex;
	align-items: center;
}

.section-header-error i {
	margin-right: 10px;
	color: #6c757d;
}

.error-container pre {
	border-left: 3px solid #6c757d !important;
}

.error-container .text-danger-custom {
	color: #6c757d !important;
}

#captcha-img img {
	border-radius: 4px;
	max-height: 40px;
	width: auto;
	display: block;
}

.captcha-wrapper {
	border: 1px solid #dee2e6 !important;
}

@media (max-width: 768px) {
	.home-link {
		position: static;
		display: block;
		margin-bottom: 15px;
	}

	#sidebar {
		position: absolute;
		height: 100%;
		margin-left: calc(-1 * var(--sidebar-width));
	}

	#sidebar.active {
		margin-left: 0;
	}

	#easyui-tabs-content {
        height: auto !important;
		min-height: 400px;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
		display: block !important;
	}
	
	.datagrid-content {
		min-width: 800px !important;
	}
	
	.datagrid-toolbar {
		white-space: nowrap;
		overflow-x: auto;
		padding: 10px !important;
	}
	
	.datagrid-view {
		width: 100% !important;
	}
	
	.card-body {
		flex-direction: column;
		text-align: center;
	}

	.icon-box {
		margin: 0 auto 15px !important;
	}

	.stat-badge {
		margin: 5px auto !important;
	}

	.btn-action {
		margin-top: 15px;
		width: 100%;
	}
}

@media print {
	@page {
		size: A4;
		margin: 15mm 10mm 15mm 10mm;
	}

	.no-print, .btn, #back-to-top, #go-to-bottom, .home-link, footer {
		display: none !important;
	}
	
	.page-break-after-always {
		break-after: page;
		page-break-after: always;
	}
	
	.print-unit {
        display: block;
        page-break-inside: avoid !important;
        break-inside: avoid-page !important;
        margin-bottom: 20px;
    }

    .row {
        display: block !important;
        page-break-inside: avoid !important;
    }

	body {
		background: none !important;
		background-color: #fff !important;
		font-size: 8pt;
	}

	.container {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.report-container {
		box-shadow: none !important;
		border: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.section-header {
		background-color: #eeeeee !important;
		color: #198754 !important;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.badge {
		border: 1px solid #ccc !important;
		color: #000 !important;
		background: transparent !important;
	}

	.table {
		border-collapse: collapse !important;
		width: 100% !important;
	}

	.table td, .table th {
		background-color: #fff !important;
		border: 1px solid #dee2e6 !important;
	}

	.section-header, h3, h5 {
		page-break-after: avoid;
	}

	.data-label {
		color: #555 !important;
		font-size: 11pt !important;
	}

	.data-value {
		color: #000 !important;
		font-size: 12pt !important;
	}

	.page-break-before {
		page-break-before: always !important;
		break-before: page !important;
		margin-top: 0 !important;
	}

	.qr-code-wrapper {
		display: block !important;
		position: absolute !important;
		right: 0 !important;
		top: 0 !important;
		width: 100px !important;
	}

	.qr-code-wrapper img {
		width: 100px !important;
		height: 100px !important;
		border: 1px solid #000 !important;
		-webkit-print-color-adjust: exact;
	}

	.qr-code-wrapper span {
		font-size: 8px !important;
		color: #000 !important;
	}

	.row {
		margin-right: -5px !important;
		margin-left: -5px !important;
		page-break-inside: avoid;
	}

	.row > [class*="col-"] {
		padding-right: 5px !important;
		padding-left: 5px !important;
	}

	.data-item {
		margin-bottom: 2px !important;
		padding-bottom: 0 !important;
	}
}

@media (max-width: 400px) {
	.otp-input {
		width: 40px;
		height: 50px;
		font-size: 1.2rem;
	}
}

/* EasyUI */

#easyui-tabs-content {
	background: rgba(25, 135, 84, 0.02);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
	padding: 10px;
	margin-bottom: 20px;
	/* border-top: 5px solid var(--primary-green) !important; */
	overflow: hidden;
}

.tabs-panels {
	border: none !important;
}

.datagrid-content {
	border: none !important;
	height: auto !important;
	min-height: 600px;
	min-width: 600px;
	display: block !important;
}

.panel, .window, .window-shadow, .window-mask, .messager-window {
	background-color: var(--sidebar-bg) !important;
	border-color: var(--sidebar-bg) !important;
	color: var(--white) !important;
	border-radius: 8px !important;
}

.panel-body, .window .window-body {
	background-color: var(--white) !important;
	color: var(--dark) !important;
	border-color: #dee2e6 !important;
	font-size: var(--body-font-size) !important;
	font-family: var(--font-family-sans-serif) !important;
}

.panel-title {
	color: var(--white) !important;
	font-weight: 500 !important;
}

.panel-tool {
	display: flex !important;
	align-items: center !important;
	gap: 5px !important;
	height: 24px !important;
	top: 50% !important;
	margin-top: -12px !important;
	right: 10px !important;
	z-index: 10 !important;
}

.panel-tool-close {
	text-decoration: none;
	background: none !important;
	opacity: 0.8 !important;
	position: relative !important;
	width: 20px !important;
	height: 20px !important;
	display: inline-block !important;
}

.panel-tool-close::before {
	content: '\f00d';
	font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free' !important;
	font-weight: 900;
	color: var(--white);
	font-size: 16px;
	display: block;
	text-align: center;
	line-height: 20px;
}

.panel-tool a:hover {
	background-color: rgba(255, 255, 255, 0.2) !important;
	border-radius: 4px !important;
	opacity: 1 !important;
}

.window-header {
	padding-right: 40px !important;
}

.dialog-toolbar, .dialog-button {
	background-color: var(--light) !important;
	border-color: #dee2e6 !important;
}

.datagrid-header, .datagrid-td-rownumber {
	background-color: #f8f9fa !important;
	border-color: #dee2e6 !important;
}

.datagrid-row-over {
	background-color: rgba(25, 135, 84, 0.1) !important;
	color: var(--dark) !important;
}

.datagrid-row-selected {
	background-color: var(--indigo) !important;
	color: var(--white) !important;
}

.datagrid-cell {
	font-size: var(--body-font-size) !important;
}

.l-btn {
	background: var(--primary-green) !important;
	border-color: var(--primary-green) !important;
	color: var(--white) !important;
	border-radius: 4px !important;
	margin: 0 5px 0 5px !important;
}

.l-btn:hover {
	background: #157347 !important;
	border-color: #146c43 !important;
	filter: none !important;
}

.l-btn-plain:hover {
	background: var(--light-bg) !important;
	border: 1px solid #dee2e6 !important;
}

.textbox, .combobox {
	border-color: #ced4da !important;
	border-radius: 4px !important;
}

.textbox-focused {
	border-color: var(--primary-green) !important;
	box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25) !important;
}

.combobox-item-hover {
	background-color: var(--light-bg) !important;
}

.combobox-item-selected {
	background-color: var(--primary-green) !important;
	color: var(--white) !important;
}

.tabs-header {
	background-color: var(--white) !important;
	border-color: #dee2e6 !important;
}

.tabs li .tabs-inner {
	background-color: var(--light) !important;
	border-color: #dee2e6 !important;
	color: var(--gray) !important;
}

.tabs li.tabs-selected .tabs-inner {
	background-color: var(--white) !important;
	border-bottom: 2px solid var(--primary-green) !important;
	color: var(--primary-green) !important;
	font-weight: bold !important;
}

.messager-body {
	font-size: var(--body-font-size) !important;
}

.tooltip {
	background-color: var(--sidebar-bg) !important;
	color: var(--white) !important;
	border-color: var(--sidebar-bg) !important;
	z-index: 20000 !important;
}

.window-shadow {
	background: rgba(0, 0, 0, 0.5) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
	border-radius: 8px !important;
	filter: blur(4px) !important;
}

.window {
	border: 1px solid var(--sidebar-bg) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.window-mask {
	background-color: var(--sidebar-bg) !important;
	opacity: 0.5 !important;
	filter: alpha(opacity=50) !important;
}

.panel-header.window-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.l-btn-plain:hover, 
.l-btn-plain:hover .l-btn-text, 
.l-btn-plain:hover .l-btn-icon {
	color: var(--gray-dark) !important;
	background-color: var(--light-bg) !important;
	text-decoration: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.dialog-button a.l-btn-plain:hover {
	border: 1px solid #dee2e6 !important;
	border-radius: 4px !important;
}

.hero-section {
	background: linear-gradient(135deg, #146c43 50%, #6610f2 100%);
	color: white;
	padding: 60px 20px;
	text-align: center;
}

.cta-buttons .btn {
	padding: 12px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	margin: 10px;
	display: inline-block;
	transition: all 0.3s;
}

.brief-container {
	max-width: 900px;
	margin: -50px auto 50px;
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pdf-link {
	background: #f8f9fa;
	border-left: 5px solid #6610f2;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.dashboard-card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: transform 0.2s;
	margin-bottom: 1.5rem;
}

.icon-box {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.stat-badge {
	font-size: 0.95rem;
	padding: 8px 15px;
	border-radius: 8px;
	font-weight: 600;
	display: block;
	width: fit-content;
}

.btn-action {
	border-radius: 10px;
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	min-width: 100px;
}