*
{
	font-size: 14px;
}

.copyright, .copyright *, .tops *, .bottom_tab *
{
    font-size: 14px !important;
}

.copyright, .copyright *
{
	font-size: 13px !important;
	color:#666 !important;
}
body
{
	background-color: white !important;
}
.tops
{
	overflow: hidden;
	position: fixed;
	z-index: 99999;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: 0px;
	padding: 0px;
	background-color: white;
	box-shadow: 0 0 10px 1px rgba(82,63,105,.3);
}
.tops .top_logo
{
	width: 80px;
	float: left;
	margin: 5px;
}
.tops .top_lang
{
	float: right;
	margin: 5px;
	margin-top: 12px;
	color: #222 !important;
}
.tabs
{
	
}
.bottom_tab
{
	position: fixed;
	z-index: 99999;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0px;
	padding: 0px;
	background-color: white;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 0 10px 1px rgba(82,63,105,.3);
}
.bottom_tab li
{
	list-style: none;
	margin: 0px;
	float: left;
	padding: 0px;
	width: 33.33%;
	text-align: center;
}
.bottom_tab li a
{
	padding: 5px 3px;
	display: block;
	text-decoration: none;
	color: #999;
}
.bottom_tab li a .fa
{
	font-size: 23px;
}
.bottom_tab li a:hover, .bottom_tab li a.active
{
	color: #01B702;
	text-decoration: none;
}
.page-content-app
{
	margin: 0px;
	border-radius:0px;
}
.main_content
{
	border-radius:0px !important;
	border: none !important;
	box-shadow: none !important;
	margin-bottom: 100px;
}
.page-header-fixed .page-container 
{
    margin-top: 24px !important;
}

.form-control
{
	
}
.input-icon i 
{
    margin: 16px 2px 4px 10px;
}

.report_list .list-group-item
{
	padding: 20px 15px;
	font-weight: bold;
	margin-bottom: 15px;
	border-radius:4px !important;
}
.avatar
{
	max-width: 120px;
	height: 120px;
	border: 1px solid #CCC;
	border-radius:50% !important;
	box-shadow: 0 0 10px 1px rgba(82,63,105,.3);
}

.btn, .btn:hover, .btn.green
{
	background: #01B702 !important;
	color: white !important;
	border: 1px solid #01B702 !important;
}
.panel
{
	border-color: #d9edf7 !important;
}
.panel-heading 
{
    color: #31708f !important;
    background-color: #d9edf7 !important;
    border-color: #d9edf7 !important;
}
.panel-body
{
	padding: 5px;
}


@media only screen and (min-width: 600px) 
{
	.dashboard-stat 
	{
		width: 33.33% !important;
		float: left;
	}
	.btn
	{
		width: 200px !important;
	}
	.dashboard-stat .details
	{
		position:static;
	}
	.dashboard-stat .details .desc
	{
		text-align: left;
	}
	.file_i, .mnt
	{
		width: 48% !important;
		float: left;
		margin: 1%;
		
	}
	.col-md-12
	{
		clear: both;
	}
}
.homebtn i, .bottom_tab li a i
{
	-webkit-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out; 
	-o-transition:all .5s ease-in-out; 
	-ms-transition:all .5s ease-in-out;  
	transition:all .5s ease-in-out;
}
.homebtn:hover> div div i, .bottom_tab li a:hover> i
{
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg);  
}


.navbar-nav {
    margin: 4.5px 0px;
}
.nav>li
{
	display: inline-block;
}
		:root{
    --white: #f9f9f9;
    --black: #00A01E;
    --grey: #00A01E;
}
/* Header */
.headerapp{
	/*
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px var(--grey);
	*/
	box-shadow: 1px 1px 3px 0px #CCC;
	background-color:white;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999;
}

/* Logo */
.logoapp{
    display: inline-block;
    color: var(--white);
    margin-left: 10px;
	margin-top:10px;

}

/* Nav menu */
.navapp{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;
	overflow-y:auto;
    
}

.menuapp a{
    display: block;
	padding: 6px 20px;
	font-size:16px !important;
    color: var(--white);

}
.menuapp a span{
	font-size:16px !important;

}

.menuapp a:hover{
    background-color: var(--grey);
}

.navapp{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */

.hambapp{
    cursor: pointer;
    float: right;
    padding: 20px 20px;
}


.hamb-lineapp {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-lineapp::before,
.hamb-lineapp::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-lineapp::before{
    top: 5px;
}

.hamb-lineapp::after{
    top: -5px;
}


.side-menuapp {
    display: none !important;
}

/* Toggle menu icon */

.side-menuapp:checked ~ nav{
    max-height: 100%;
}

.side-menuapp:checked ~ .hambapp .hamb-lineapp {
    background: transparent;
}

.side-menuapp:checked ~ .hambapp .hamb-lineapp::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menuapp:checked ~ .hambapp .hamb-lineapp::after {
    transform: rotate(45deg);
    top:0;
}
.menuapp
{
	margin:0px;
	padding:0px;
	margin-top:10px;
}
.menuapp li
{
	list-style: none;
	border-top: 1px sloid #187fbd;
}
.btn
{
	padding: 8px 13px !important;
}
.input-medium
{
	width:100% !important;
}

.app_tabs
{
    position:fixed;
    bottom:0px;
    left:3px;
    right:3px;
    background-color:#EEE;
    border-radius:40px !important;
    padding:5px;
	border:1px solid #DDD;
	z-index: 9;
}
.app_tabs button{
	background-color:white !important;
	color: #00A01E !important;
	border:1px solid #e6eef9 !important;
    border-radius:40px !important;
}

.app_tabs button.btn-info, .app_tabs button:hover{
	background-color:#00A01E !important;
	color: white !important;
	border:1px solid #e6eef9 !important;
}
.btn, .btn:hover, .btn.green {
    background: #00A01E !important;
    color: white !important;
    border: 1px solid #00A01E !important;
}
.floatThead-container
{
	z-index: 0 !important;
}
.app_footer
{
	position:fixed;
	bottom:0px;
	left:0px;
	right:0px;
	z-index: 99999;
	box-shadow: 1px 1px 5px 2px #CCC;
	border-top:1px solid #CCC;
	padding-top: 1px;
	height: 46px;
	background-color: white;
}
.app_footer ul
{
	margin:0px;
	padding:0px;
}
.app_footer ul li
{
	list-style: none;
	float:left;
	width: 25%;
	text-align:center;
}
.app_footer ul li a i
{
	font-size:15px !important;
}
.app_footer ul li a
{
	font-size:15px !important;
	display: block;
    height: 42px;
    margin-top: 0px;
	color:#00A01E;

}
.app_footer ul li a.line
{
	border-right:1px solid #00A01E;
}
body
{
	background-color: #EEE !important;
}
.app_icons
{

}
.app_icons ul
{
	margin:0px;
	padding:0px;
}
.app_icons ul li
{
	list-style: none;
	float:left;
	width: 33.33%;
	text-align:center;
	padding: 10px;
	font-size: 12px !important;
	min-height: 128px;
}
.app_icons ul li *
{
	font-size: 12px !important;

}
.app_icons ul li a
{
	border:1px solid #00A01E;
	
	/* border:1px solid #7FC5EF; */
	border-radius:8px !important;
	display: block;
	height: 60px;
	padding: 5px;
	color:#00A01E;

}
.app_icons ul li a i
{
	font-size: 25px !important;
	line-height: 45px;
}
.app_icons ul li a i.hov
{
	-webkit-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out; 
	-o-transition:all .5s ease-in-out; 
	-ms-transition:all .5s ease-in-out;  
	transition:all .5s ease-in-out;
}
.app_icons ul li a:hover> i.hov
{
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	transform:rotate(360deg);  
}

.app_icons ul li a i.fa-caret-down
{	
	font-size: 16px !important;
	position: absolute;
}
input.form-control, select.form-control
{
	border-radius:5px !important;
}
.select2-container--default .select2-selection--single {
    border-radius: 5px !important;
}
.app_tabs
{
	display:none;
}
#map
{	
    border-radius: 5px !important;
	box-shadow: 1px 1px 3px 3px #DDD !important;
}
.page-content-app
{
	padding:10px;
	background-color: #EEE;
}
.main_content
{
	background-color: white;
	border-radius:5px !important;
	box-shadow: 1px 1px 3px 3px #DDD !important;
}
#codes_details *
{
	font-size:12px !important;
}
#codes_details
{
	margin-top: -150px;
	margin-top: auto !important;
	bottom: 52px;
}
.panel-heading
{
	background-color: #00A01E !important;
	color:white !important;
}
.panel
{
	
    border-radius: 5px !important;
	box-shadow: 1px 1px 3px 3px #DDD !important;
}
.panel-heading {
	padding: 8px 5px;
    border-top-right-radius: 3px !important;
    border-top-left-radius: 3px !important;
}
.top_tabs
{
	margin: 0px;
	padding: 0px;
	border: 1px solid #999;
	border-radius: 5px !important;
	overflow: hidden;
	padding: 10px 5px;
	margin-bottom: 10px;
	
    background-color: #00A01E;

}

.top_tabs li a
{ 
	color: white;
}
.top_tabs li
{
	list-style: none;
	float:left;
	text-align: center;
	
}
.top_tabs.ttab2 li
{
	width: 50%;
}
.top_tabs.ttab3 li
{
	width: 33.33%;
}
.ttabline
{
	border-right: 1px solid #999;
}
.nav>li>a:hover, .nav>li>a:focus
{
	color: white !important;
}
#cnt_form_body .note.note-info
{
	display: none;
}
.portlet
{
    border-radius: 5px !important;
    box-shadow: 1px 1px 3px 3px #DDD !important;
	border-color: #d9edf7 !important;
}
.portlet-title
{
	background-color: #00A01E !important;
    padding: 8px 5px;
    border-top-right-radius: 3px !important;
    border-top-left-radius: 3px !important;
}
.portlet-title .caption
{
    color: #00A01E !important;
}
.row_i
{
	background-color: white;
    box-shadow: 0 0 13px 0 rgba(82, 63, 105, .1);
    border: 1px solid #CCC !important;
    border-radius: 4px !important;
	margin: 5px 0px;
	padding: 8px;
}
.row_i .btn
{
	padding: 1px 13px !important;
}

:root {
	--app-primary: #009F1E;
	--app-primary-dark: #0a6e22;
	--app-primary-soft: #e9f8ec;
	--app-surface: #ffffff;
	--app-border: #dce8de;
	--app-text: #17311d;
	--app-muted: #6a7f6e;
	--app-shadow: 0 16px 38px rgba(0, 80, 22, 0.12);
}

body {
	background: linear-gradient(180deg, #f3f8f3 0%, #edf4ee 100%) !important;
	color: var(--app-text);
}

.headerapp {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
}

.page-content-app {
	padding: 12px;
	background: transparent;
}

.main_content {
	background: transparent;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin-bottom: 94px;
}

.btn, .btn:hover, .btn.green {
	background: linear-gradient(135deg, #3f5560 0%, #5a727c 100%) !important;
	border: 1px solid #4f6670 !important;
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(45, 62, 69, 0.18);
}

.btn-default.btn-outline-green {
	background: #fff !important;
	color: #3f5560 !important;
	border: 1px solid rgba(63, 85, 96, 0.18) !important;
	box-shadow: none;
}

.app_welcome_card {
	background: linear-gradient(145deg, #233644 0%, #36515f 55%, #557180 100%);
	border-radius: 24px !important;
	padding: 20px 18px;
	color: #fff;
	box-shadow: 0 18px 40px rgba(28, 42, 49, 0.24);
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}

.app_welcome_card:before,
.app_welcome_card:after {
	content: "";
	position: absolute;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.12);
}

.app_welcome_card:before {
	width: 160px;
	height: 160px;
	top: -65px;
	right: -55px;
}

.app_welcome_card:after {
	width: 110px;
	height: 110px;
	bottom: -45px;
	right: 40px;
}

.app_welcome_badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.18);
	font-size: 12px !important;
	letter-spacing: 0.4px;
	margin-bottom: 10px;
}

.app_welcome_card h2 {
	margin: 0 0 8px;
	font-size: 24px !important;
	font-weight: 700;
	color: #fff;
}

.app_welcome_card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.5;
}

.app_welcome_actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.app_welcome_actions .btn {
	border-radius: 18px !important;
	padding: 12px 16px !important;
	min-height: 48px;
	background: rgba(255,255,255,0.14) !important;
	border: 1px solid rgba(255,255,255,0.14) !important;
	box-shadow: none !important;
	backdrop-filter: blur(8px);
}

.app_welcome_actions .btn i {
	margin-right: 8px;
}

.app_welcome_actions .btn.btn-outline-green {
	background: rgba(255,255,255,0.96) !important;
	color: #334850 !important;
	border-color: rgba(255,255,255,0.22) !important;
}

.app_section_title {
	font-size: 15px !important;
	font-weight: 700;
	color: var(--app-text);
	margin: 10px 2px 12px;
}

.app_card_grid ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.app_icons ul li {
	width: auto;
	float: none;
	padding: 0;
	min-height: 0;
}

.app_icons ul li a {
	height: auto;
	min-height: 132px;
	padding: 16px 14px;
	background: var(--app-surface);
	border: 1px solid var(--app-border);
	border-radius: 22px !important;
	box-shadow: var(--app-shadow);
	color: var(--app-text);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	text-decoration: none;
}

.app_icon_shell {
	width: 52px;
	height: 52px;
	border-radius: 18px !important;
	background: linear-gradient(135deg, rgba(63, 85, 96, 0.12) 0%, rgba(63, 85, 96, 0.22) 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.app_icons ul li a i {
	font-size: 24px !important;
	line-height: 1;
	color: #3f5560;
}

.app_icon_text {
	display: block;
	text-align: left;
	font-size: 14px !important;
	font-weight: 600;
	color: var(--app-text);
	margin-top: 16px;
	padding-right: 24px;
}

.app_icon_more {
	position: absolute;
	right: 16px;
	bottom: 16px;
	font-size: 18px !important;
	color: var(--app-muted) !important;
}

.subicons {
	box-shadow: var(--app-shadow);
	border: 1px solid var(--app-border);
	background: var(--app-surface);
	border-radius: 22px !important;
	padding: 16px;
	margin-top: 14px;
}

.subicons_title {
	font-size: 15px !important;
	font-weight: 700;
	color: var(--app-text);
	margin-bottom: 14px;
}

.subicons .app_icons ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.subicons .app_icons ul li,
.app_footer ul li {
	width: auto;
}

.subicons .app_icons ul li a {
	min-height: 110px;
}

.app_tabs {
	position: static;
	display: flex;
	gap: 8px;
	background: transparent;
	border: none;
	padding: 0;
	margin-top: 12px !important;
}

.app_tabs button {
	flex: 1;
	background: #fff !important;
	color: var(--app-muted) !important;
	border: 1px solid var(--app-border) !important;
	border-radius: 16px !important;
	padding: 10px 8px !important;
	box-shadow: none;
}

.app_tabs button.btn-info,
.app_tabs button:hover {
	background: #eef3f5 !important;
	color: #3f5560 !important;
	border-color: rgba(63, 85, 96, 0.22) !important;
}

.top_tabs {
	border: 1px solid var(--app-border);
	border-radius: 18px !important;
	padding: 6px;
	background: #fff;
	box-shadow: var(--app-shadow);
}

.top_tabs li a {
	display: block;
	padding: 10px 8px;
	color: var(--app-muted);
	font-weight: 600;
	border-radius: 12px !important;
}

.top_tabs .ttabline a,
.top_tabs li:first-child a {
	background: linear-gradient(135deg, #3f5560 0%, #5a727c 100%);
	color: #fff !important;
}

.input-group {
	display: flex;
	align-items: stretch;
}

.input-group .form-control {
	height: 42px;
}

.input-group-btn {
	display: flex;
}

.input-group-btn .btn {
	height: 42px;
	min-height: 42px;
	padding: 0 14px !important;
	border-radius: 0 14px 14px 0 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.app_record_list {
	display: grid;
	gap: 12px;
}

.app_record_item {
	background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
	border: 1px solid var(--app-border);
	border-radius: 18px !important;
	padding: 14px;
	box-shadow: 0 12px 24px rgba(39, 55, 62, 0.08);
}

.app_record_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.app_record_head strong {
	font-size: 15px !important;
	color: var(--app-text);
}

.app_record_head span,
.app_record_meta span {
	font-size: 12px !important;
	color: var(--app-muted);
}

.app_record_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.app_record_code {
	margin-top: 10px;
	padding: 12px;
	border-radius: 14px !important;
	background: #f4f7f8;
	border: 1px solid rgba(63, 85, 96, 0.08);
	font-family: Consolas, monospace;
	font-size: 12px !important;
	white-space: pre-wrap;
	word-break: break-word;
	color: #33444c;
}

.btn,
.btn:hover,
.btn.green {
	background: linear-gradient(135deg, #0f8f29 0%, #16a536 52%, #2dbe4d 100%) !important;
	border: 1px solid #149732 !important;
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(10, 108, 31, 0.18);
}

.btn-default.btn-outline-green {
	background: #ffffff !important;
	color: #0f8f29 !important;
	border: 1px solid rgba(15, 143, 41, 0.18) !important;
}

.app_welcome_card {
	background: linear-gradient(145deg, #0d8726 0%, #16a336 58%, #45bb60 100%);
	box-shadow: 0 18px 40px rgba(13, 96, 30, 0.22);
}

.app_icon_shell {
	background: linear-gradient(135deg, rgba(15, 143, 41, 0.12) 0%, rgba(15, 143, 41, 0.22) 100%);
}

.app_icons ul li a i {
	color: #118f2d;
}

.app_parent_icon {
	background:
		radial-gradient(circle at top left, rgba(255,255,255,0.24), transparent 34%),
		linear-gradient(135deg, #0f8f29 0%, #19a63a 56%, #42bc5d 100%);
	box-shadow: 0 16px 28px rgba(13, 96, 30, 0.18);
}

.app_parent_link {
	background: linear-gradient(135deg, #f6fff7 0%, #edf9ef 100%);
	border: 1px solid rgba(15, 143, 41, 0.14);
	color: #0f8f29 !important;
}

.app_parent_children a {
	border: 1px solid rgba(15, 143, 41, 0.10);
	color: #295339 !important;
}

.app_parent_children a:hover,
.app_parent_link:hover {
	background: #eef8f0;
	color: #0d7d26 !important;
}

.top_tabs,
.app_tabs {
	background: linear-gradient(180deg, #f5fbf5 0%, #ebf6ec 100%);
	border: 1px solid rgba(15, 143, 41, 0.10);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.top_tabs li a {
	background: rgba(255,255,255,0.42);
	border: 1px solid transparent;
	color: #48614f !important;
}

.top_tabs li.active a,
.top_tabs li a:hover {
	background: linear-gradient(135deg, #0f8f29 0%, #19a63a 56%, #42bc5d 100%) !important;
	border-color: rgba(15, 143, 41, 0.18) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 22px rgba(13, 96, 30, 0.14);
}

.app_tabs .btn {
	background: rgba(255,255,255,0.46) !important;
	border: 1px solid transparent !important;
	color: #4f6756 !important;
}

.app_tabs .btn.active-tab,
.app_tabs .btn.btn-info {
	background: linear-gradient(135deg, #0f8f29 0%, #19a63a 56%, #42bc5d 100%) !important;
	border-color: rgba(15, 143, 41, 0.18) !important;
	color: #ffffff !important;
	box-shadow: 0 12px 24px rgba(13, 96, 30, 0.16) !important;
}

.app_tabs .btn:hover {
	background: #ffffff !important;
	color: #0f8f29 !important;
	border-color: rgba(15, 143, 41, 0.16) !important;
}

.ttabline {
	border-right: none;
}

.panel,
.row_i,
.portlet {
	border: 1px solid var(--app-border) !important;
	border-radius: 22px !important;
	box-shadow: var(--app-shadow) !important;
	overflow: hidden;
	background: var(--app-surface);
}

.panel-heading,
.portlet-title {
	background: linear-gradient(135deg, #f7fff8 0%, #ebf8ee 100%) !important;
	color: var(--app-primary) !important;
	padding: 14px 16px !important;
	border-bottom: 1px solid var(--app-border) !important;
	font-weight: 700;
}

.panel-body {
	padding: 14px !important;
}

.app_footer {
	height: auto;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid rgba(0, 159, 30, 0.12);
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
}

.app_footer ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.app_footer ul li {
	float: none;
}

.app_footer ul li a {
	height: auto;
	min-height: 58px;
	padding: 8px 6px;
	border-radius: 18px !important;
	color: var(--app-muted);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 12px !important;
	font-weight: 600;
}

.app_footer ul li a.line {
	border-right: none;
}

.app_footer ul li a i {
	font-size: 18px !important;
}

.app_footer ul li a.active {
	background: var(--app-primary-soft);
	color: var(--app-primary);
}

.select2-container--default .select2-selection--single,
input.form-control,
select.form-control {
	border-radius: 16px !important;
	border-color: var(--app-border) !important;
	min-height: 44px;
	box-shadow: none !important;
}

#map {
	border-radius: 22px !important;
	box-shadow: var(--app-shadow) !important;
}

#codes_details {
	border-radius: 18px !important;
	border: 1px solid var(--app-border);
	box-shadow: var(--app-shadow);
	padding: 10px 12px;
}

@media only screen and (min-width: 768px) {
	.app_card_grid ul,
	.subicons .app_icons ul {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.app_parent_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.app_welcome_actions .btn {
		width: auto !important;
	}
}

.app_home_sections {
	display: grid;
	gap: 16px;
}

.app_parent_grid {
	display: grid;
	gap: 14px;
}

.app_parent_card {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
	border: 1px solid var(--app-border);
	border-radius: 24px !important;
	padding: 16px;
	box-shadow: 0 16px 30px rgba(39, 55, 62, 0.08);
}

.app_parent_main {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
}

.app_parent_icon {
	width: 56px;
	height: 56px;
	border-radius: 20px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 16px 28px rgba(47, 63, 70, 0.18);
	border: 1px solid rgba(255,255,255,0.12);
	position: relative;
	overflow: hidden;
}

.app_parent_icon i {
	color: #fff !important;
	font-size: 22px !important;
	position: relative;
	z-index: 1;
}

.app_parent_icon:after {
	content: "";
	position: absolute;
	right: -8px;
	bottom: -16px;
	width: 42px;
	height: 42px;
	border-radius: 16px !important;
	background: rgba(255,255,255,0.10);
	transform: rotate(18deg);
}

.app_parent_text strong {
	display: block;
	font-size: 16px !important;
	color: var(--app-text);
	margin-bottom: 4px;
}

.app_parent_text span {
	display: block;
	font-size: 13px !important;
	line-height: 1.55;
	color: var(--app-muted);
}

.app_parent_link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 84px;
	min-height: 42px;
	padding: 10px 18px;
	border-radius: 999px !important;
	background: linear-gradient(135deg, #f7fafb 0%, #eef3f5 100%);
	border: 1px solid rgba(63, 85, 96, 0.14);
	color: #3f5560 !important;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
	letter-spacing: 0.1px;
}

.app_parent_children {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 159, 30, 0.08);
}

.app_parent_children a {
	display: inline-flex !important;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	border-radius: 14px !important;
	background: #fff;
	border: 1px solid rgba(63, 85, 96, 0.10);
	color: #42555e !important;
	font-weight: 600;
	box-shadow: 0 10px 22px rgba(42, 55, 62, 0.05);
	position: relative;
}

.app_parent_children a:after {
	content: "\f105";
	font-family: FontAwesome;
	font-size: 12px;
	margin-left: 8px;
	color: #7a8c94;
}

.app_parent_children a:hover,
.app_parent_link:hover {
	text-decoration: none;
	background: #f1f5f7;
	color: #2f4148 !important;
}

.admin_summary_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 18px;
}

.admin_summary_card {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
	border: 1px solid var(--app-border);
	border-radius: 22px !important;
	padding: 16px;
	box-shadow: 0 16px 30px rgba(0, 80, 22, 0.08);
}

.admin_summary_label {
	font-size: 12px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--app-muted);
	margin-bottom: 10px;
}

.admin_summary_value {
	font-size: 30px !important;
	font-weight: 800;
	line-height: 1;
	color: var(--app-text);
}

.admin_summary_note {
	margin-top: 8px;
	font-size: 12px !important;
	color: var(--app-muted);
}

.admin_table_shell,
.grid-view {
	background: linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
	border: 1px solid var(--app-border);
	border-radius: 24px !important;
	padding: 16px;
	box-shadow: 0 18px 34px rgba(0, 80, 22, 0.08);
}

.table-scrollable2 {
	border: none !important;
}

.grid-view .summary,
.dataTables_info {
	color: var(--app-muted);
	font-size: 13px !important;
	padding-top: 14px;
}

.grid-view .pager,
.paging_bootstrap {
	padding-top: 10px;
}

.grid-view table.table,
.admin_table_shell table.table {
	margin-bottom: 0;
	border-collapse: separate;
	border-spacing: 0;
}

.grid-view table.table > thead > tr > th,
.admin_table_shell table.table > thead > tr > th {
	background: linear-gradient(180deg, #f4faf5 0%, #ebf6ed 100%);
	border-top: none !important;
	border-bottom: 1px solid rgba(0, 159, 30, 0.1) !important;
	color: var(--app-text);
	font-size: 12px !important;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.45px;
	padding: 14px 12px !important;
}

.grid-view table.table > tbody > tr > td,
.admin_table_shell table.table > tbody > tr > td {
	padding: 14px 12px !important;
	border-top: 1px solid #edf4ee !important;
	vertical-align: middle !important;
	background: rgba(255,255,255,0.92);
}

.grid-view table.table > tbody > tr:hover > td,
.admin_table_shell table.table > tbody > tr:hover > td {
	background: #f4fbf5;
}

.grid-view .filters input,
.grid-view .filters select {
	min-height: 38px;
	border-radius: 12px !important;
	border-color: var(--app-border) !important;
}

.button-column {
	white-space: nowrap;
}

.button-column .btn,
.grid-view .button-column .btn {
	margin-right: 6px;
	margin-bottom: 6px;
}

.report_section_card {
	background: linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
	border: 1px solid var(--app-border);
	border-radius: 24px !important;
	padding: 16px;
	box-shadow: 0 18px 34px rgba(0, 80, 22, 0.08);
	margin-bottom: 16px;
}

.report_section_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.report_section_title {
	font-size: 18px !important;
	font-weight: 800;
	color: var(--app-text);
}

.report_section_meta {
	font-size: 12px !important;
	color: var(--app-muted);
}

.report_row_card {
	background: #fff;
	border: 1px solid rgba(0, 159, 30, 0.1);
	border-radius: 18px !important;
	padding: 14px;
	box-shadow: 0 12px 24px rgba(0, 80, 22, 0.05);
	margin-bottom: 12px;
}

.report_row_card strong {
	display: block;
	font-size: 15px !important;
	color: var(--app-text);
	margin-bottom: 8px;
}

.folder_summary_card {
	margin-bottom: 16px;
}

@media only screen and (max-width: 991px) {
	.admin_summary_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.app_home_section {
	background: rgba(255,255,255,0.84);
	border: 1px solid var(--app-border);
	border-radius: 24px !important;
	padding: 16px;
	box-shadow: var(--app-shadow);
	backdrop-filter: blur(10px);
}

.app_home_section_head {
	margin-bottom: 14px;
}

.app_home_section_title {
	font-size: 16px !important;
	font-weight: 700;
	color: var(--app-text);
}

.app_home_section_desc {
	font-size: 12px !important;
	color: var(--app-muted);
	margin-top: 4px;
}

.app_nav_card {
	background: #fff;
	border: 1px solid var(--app-border);
	border-radius: 22px !important;
	padding: 14px;
	box-shadow: var(--app-shadow);
	min-height: 160px;
}

.app_nav_card_title {
	font-size: 14px !important;
	font-weight: 700;
	color: var(--app-text);
	margin-bottom: 14px;
}

.app_nav_button {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 106px !important;
	background: linear-gradient(180deg, #fbfefb 0%, #f2f9f3 100%) !important;
	border: 1px solid rgba(0, 159, 30, 0.12) !important;
}

.app_subcard {
	display: block !important;
	margin-top: 14px;
	padding: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #f6fbf7 100%);
	border: 1px dashed rgba(0, 159, 30, 0.22);
	border-radius: 22px !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.app_feature_switches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.app_feature_chip {
	border: 1px solid var(--app-border);
	background: #fff;
	color: var(--app-muted);
	border-radius: 999px !important;
	padding: 10px 14px;
	font-size: 13px !important;
	font-weight: 600;
	box-shadow: none;
}

.app_feature_chip.active,
.app_feature_chip:hover {
	background: var(--app-primary-soft);
	color: var(--app-primary);
	border-color: rgba(0, 159, 30, 0.25);
}

.subicons:not(.is-open) {
	display: none;
}

.headerapp .navbar-nav.pull-right {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 10px;
}

.headerapp .navbar-nav.pull-right > li {
	margin-top: 0 !important;
}

.top_tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin: 0 0 14px;
	padding: 8px;
	list-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	background: linear-gradient(180deg, #f7fbf7 0%, #eef7ef 100%);
	border: 1px solid rgba(0, 159, 30, 0.1);
	border-radius: 20px !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.top_tabs li {
	margin: 0 !important;
	float: none !important;
	flex: 0 0 auto;
}

.top_tabs li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	white-space: nowrap;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 14px !important;
	color: var(--app-muted) !important;
	font-weight: 700;
	box-shadow: none;
}

.top_tabs li.active a,
.top_tabs li a:hover {
	background: #fff;
	border-color: rgba(0, 159, 30, 0.14);
	color: #fff !important;
	box-shadow: 0 12px 24px rgba(0, 80, 22, 0.08);
	color: var(--app-primary) !important;
}

.app_tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	justify-content: flex-start;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	padding: 8px;
	background: linear-gradient(180deg, #f7fbf7 0%, #eef7ef 100%);
	border: 1px solid rgba(0, 159, 30, 0.1);
	border-radius: 20px !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.app_tabs .btn {
	min-height: 42px;
	padding: 10px 18px !important;
	border-radius: 14px !important;
	font-weight: 700;
	transition: all 0.2s ease;
	flex: 0 0 auto;
	white-space: nowrap;
	background: transparent !important;
	color: var(--app-muted) !important;
	border: 1px solid transparent !important;
	box-shadow: none !important;
}

.app_tabs .btn.active-tab {
	background: #fff !important;
	border-color: rgba(0, 159, 30, 0.14) !important;
	color: var(--app-primary) !important;
	box-shadow: 0 12px 24px rgba(0, 80, 22, 0.08) !important;
}

.app_tabs .btn:hover {
	background: rgba(255,255,255,0.88) !important;
	color: var(--app-primary) !important;
}

.headerapp .navbar-nav.pull-right > li > a {
	width: 42px;
	height: 42px;
	padding: 0 !important;
	border-radius: 14px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: #f4fbf5 !important;
	color: var(--app-primary) !important;
	border: 1px solid rgba(0, 159, 30, 0.12);
	box-shadow: 0 8px 20px rgba(0, 159, 30, 0.08);
	position: relative;
}

.badge_mtop {
	top: 2px !important;
	right: 1px !important;
	background: #fff !important;
	border-color: #fff !important;
	min-width: 16px;
	text-align: center;
}

.top_tabs + .row .app_tabs {
	display: none !important;
}

.app_welcome_card_motion {
	animation: appFloatIn 0.55s ease-out;
}

@keyframes appFloatIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.login-slider-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
	gap: 18px;
	align-items: stretch;
}

.login-info-card {
	position: relative;
	overflow: hidden;
	border-radius: 28px !important;
	padding: 28px;
	color: #fff;
	background: linear-gradient(145deg, #0c7b21 0%, #009f1e 58%, #41c55d 100%);
	box-shadow: 0 22px 48px rgba(0, 100, 25, 0.28);
	min-height: 460px;
}

.login-info-card:before,
.login-info-card:after {
	content: "";
	position: absolute;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.12);
}

.login-info-card:before {
	width: 220px;
	height: 220px;
	top: -80px;
	right: -80px;
}

.login-info-card:after {
	width: 140px;
	height: 140px;
	bottom: -50px;
	left: -30px;
}

.login-slider-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.18);
	padding: 8px 14px;
	border-radius: 999px !important;
	font-size: 12px !important;
	margin-bottom: 18px;
}

.login-slider-track {
	position: relative;
	min-height: 250px;
}

.login-slide {
	display: none;
	animation: appFadeSlide 0.35s ease;
}

.login-slide.active {
	display: block;
}

.login-slide h3 {
	color: #fff !important;
	font-size: 30px !important;
	font-weight: 700 !important;
	line-height: 1.25;
	margin-bottom: 14px;
}

.login-slide p {
	color: rgba(255,255,255,0.92);
	font-size: 15px !important;
	line-height: 1.6;
	margin-bottom: 20px;
}

.login-slide-points {
	display: grid;
	gap: 10px;
}

.login-slide-point {
	padding: 12px 14px;
	border-radius: 16px !important;
	background: rgba(255,255,255,0.14);
}

.login-slide-point strong,
.login-slide-point span {
	color: #fff;
	display: block;
}

.login-slide-point span {
	opacity: 0.88;
	margin-top: 2px;
}

.login-slider-dots {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.login-slider-dot {
	width: 10px;
	height: 10px;
	border: none;
	padding: 0;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.35);
}

.login-slider-dot.active {
	background: #fff;
	transform: scale(1.08);
}

.login-form-panel {
	background: rgba(255,255,255,0.96);
	border: 1px solid rgba(0, 159, 30, 0.12);
	border-radius: 28px !important;
	box-shadow: 0 18px 40px rgba(0,0,0,0.08);
	padding: 20px;
}

@keyframes appFadeSlide {
	from {
		opacity: 0;
		transform: translateX(8px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media only screen and (max-width: 767px) {
	.login-slider-shell {
		grid-template-columns: 1fr;
	}

	.app_parent_main {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.app_parent_link {
		grid-column: 1 / -1;
		width: 100%;
	}

	.login-info-card {
		min-height: 0;
		padding: 22px 18px;
	}

	.login-slide h3 {
		font-size: 24px !important;
	}
}

.row_i {
	background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%) !important;
	border: 1px solid var(--app-border) !important;
	border-radius: 20px !important;
	box-shadow: 0 14px 30px rgba(0, 80, 22, 0.08) !important;
	margin: 10px 0 !important;
	padding: 16px !important;
	line-height: 1.65;
	position: relative;
	overflow: hidden;
}

.row_i:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #009F1E 0%, #41c55d 100%);
}

.row_i strong,
.row_i b {
	display: block;
	font-size: 15px !important;
	color: var(--app-text);
	margin-bottom: 8px;
	padding-right: 8px;
}

.row_i br + a,
.row_i a.btn {
	margin-top: 12px;
}

.row_i a.btn + a.btn {
	margin-left: 8px;
}

.row_i .btn,
.row_i .btn-xs,
.row_i .btn-sm {
	border-radius: 999px !important;
	padding: 9px 14px !important;
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: 0.2px;
	box-shadow: 0 10px 20px rgba(0, 159, 30, 0.12);
}

.row_i .btn.yellow,
.row_i .btn-warning {
	background: #fff7e8 !important;
	color: #9a5b00 !important;
	border: 1px solid #f4d7a1 !important;
	box-shadow: none;
}

.row_i .btn.green,
.row_i .btn-info,
.row_i .btn-primary {
	background: linear-gradient(135deg, #009F1E 0%, #17b63b 100%) !important;
	color: #fff !important;
	border: 1px solid #009F1E !important;
}

.report_list .list-group-item {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
	border: 1px solid var(--app-border) !important;
	border-radius: 20px !important;
	box-shadow: 0 14px 30px rgba(0, 80, 22, 0.08);
	padding: 18px 16px;
	color: var(--app-text);
}

body.login-unified-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,255,255,0.14), transparent 26%),
		radial-gradient(circle at 85% 18%, rgba(255,255,255,0.12), transparent 22%),
		linear-gradient(145deg, #0a5f1d 0%, #009F1E 52%, #49cb66 100%) !important;
}

.login-unified-page #particles {
	display: none;
}

.login-unified-page .login-slider-shell {
	gap: 24px;
	align-items: stretch;
}

.login-unified-page .login-info-card {
	background:
		radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 30%),
		linear-gradient(150deg, #0b6a20 0%, #0ea12a 46%, #34c154 100%);
	border: 1px solid rgba(255,255,255,0.14);
	box-shadow: 0 28px 58px rgba(0, 72, 20, 0.28);
}

.login-info-card-back {
	background:
		radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 28%),
		linear-gradient(150deg, #0f3e2e 0%, #11634a 50%, #16876a 100%) !important;
}

.login-unified-page .login-form-panel {
	background: rgba(255,255,255,0.97);
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(10px);
}

.login-unified-page .login-app-form-subtitle,
.login-unified-page .login-form-inner .checkbox,
.login-unified-page .login-form-inner h5 a {
	color: #6a7f6e !important;
}

.login-unified-page .login-slider-badge {
	background: rgba(255,255,255,0.2);
	font-weight: 700;
}

.login-unified-page .login-slide-point {
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.08);
}

.login-unified-page .login-slider-dot {
	width: 11px;
	height: 11px;
}

.login-unified-page .login-slider-dot.active {
	box-shadow: 0 0 0 5px rgba(255,255,255,0.14);
}

.headerapp {
	background: rgba(255,255,255,0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(0,159,30,0.1);
	box-shadow: 0 10px 30px rgba(0, 80, 22, 0.08);
}

.headerapp:after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0,159,30,0.18) 18%, rgba(0,159,30,0.18) 82%, transparent 100%);
}

.headerapp .logoapp {
	margin-top: 8px;
}

.headerapp .logoapp img,
.headerapp .nav.navbar-nav img {
	filter: drop-shadow(0 10px 18px rgba(0, 80, 22, 0.08));
}

.app_welcome_top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.app_welcome_avatar {
	width: 62px;
	height: 62px;
	border-radius: 22px !important;
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 26px !important;
	font-weight: 800;
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.app_welcome_badge {
	background: rgba(255,255,255,0.14);
}

.app_welcome_card h2 {
	margin-top: 8px;
}

.app_home_section,
.app_parent_card,
.admin_summary_card,
.report_section_card,
.row_i,
.panel,
.main_content,
.page-sidebar-menu > li > a,
.page-sidebar-menu li .sub-menu li a {
	animation: appFloatIn 0.45s ease-out;
}

.top_tabs,
.app_tabs {
	scrollbar-width: none;
}

.top_tabs::-webkit-scrollbar,
.app_tabs::-webkit-scrollbar {
	display: none;
}

.top_tabs {
	padding: 10px;
	gap: 6px;
	background: linear-gradient(180deg, #f8fbf8 0%, #eef6ef 100%);
}

.top_tabs li a {
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 16px !important;
	color: #4e6454 !important;
}

.top_tabs li.active a,
.top_tabs li a:hover {
	background: linear-gradient(135deg, #0f9f2a 0%, #22bc45 100%);
	color: #fff !important;
	border-color: rgba(15,159,42,0.2);
	box-shadow: 0 16px 28px rgba(0, 95, 24, 0.16);
}

.app_tabs {
	padding: 8px;
	gap: 6px;
}

.app_tabs .btn {
	min-height: 46px;
	padding: 10px 16px !important;
	border-radius: 16px !important;
	font-weight: 700;
}

.app_tabs .btn.active-tab {
	background: linear-gradient(135deg, #0f9f2a 0%, #22bc45 100%) !important;
	border-color: rgba(15,159,42,0.18) !important;
	color: #fff !important;
	box-shadow: 0 14px 26px rgba(0, 95, 24, 0.18) !important;
}

.app_tabs .btn:hover {
	background: rgba(255,255,255,0.96) !important;
}

body .app_footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999 !important;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
	padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
	background: rgba(255,255,255,0.94);
	backdrop-filter: blur(10px);
}

body .app_footer ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
}

body .app_footer ul li {
	float: none !important;
	width: auto !important;
}

body .app_footer ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 6px 4px;
	border-radius: 16px !important;
	font-size: 11px !important;
}

body .app_footer ul li a i {
	font-size: 17px !important;
}

body .app_footer ul li a.active {
	background: linear-gradient(135deg, #effaf0 0%, #e7f8eb 100%);
	box-shadow: inset 0 0 0 1px rgba(0,159,30,0.08);
}

body .page-content-app,
body .main_content {
	padding-bottom: 88px;
}

.file_i {
	border: 1px solid rgba(0,159,30,0.1) !important;
	border-radius: 20px !important;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%) !important;
	box-shadow: 0 14px 28px rgba(0, 80, 22, 0.07);
	padding: 18px 14px !important;
	min-height: 128px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--app-text) !important;
}

.file_i .fa {
	font-size: 28px !important;
	color: var(--app-primary) !important;
}

.folder_summary_card,
.table-responsive {
	background: linear-gradient(180deg, #ffffff 0%, #f9fcf9 100%);
	border: 1px solid var(--app-border);
	border-radius: 22px !important;
	box-shadow: 0 16px 30px rgba(0, 80, 22, 0.08);
	padding: 14px;
}

.page-content-app .table-responsive {
	overflow: visible;
}

.app_data_list {
	display: grid;
	gap: 14px;
}

.app_data_card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
	border: 1px solid rgba(0,159,30,0.1);
	border-radius: 22px !important;
	padding: 16px;
	box-shadow: 0 16px 30px rgba(0, 80, 22, 0.08);
}

.app_data_card_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.app_data_card_title {
	font-size: 15px !important;
	font-weight: 800;
	color: var(--app-text);
}

.app_data_card_time {
	font-size: 12px !important;
	color: var(--app-muted);
	margin-top: 4px;
}

.app_data_status_badge {
	min-width: 82px;
	padding: 10px 12px;
	border-radius: 16px !important;
	color: #fff;
	text-align: center;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.app_data_status_badge span,
.app_data_status_badge strong {
	display: block;
	color: inherit;
}

.app_data_status_badge span {
	font-size: 11px !important;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	opacity: 0.9;
}

.app_data_status_badge strong {
	font-size: 18px !important;
	font-weight: 800;
	margin-top: 2px;
}

.app_data_metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.app_data_metric {
	background: #fff;
	border: 1px solid rgba(0,159,30,0.08);
	border-radius: 16px !important;
	padding: 12px;
	box-shadow: 0 10px 22px rgba(0, 80, 22, 0.05);
}

.app_data_metric_label {
	display: block;
	font-size: 12px !important;
	color: var(--app-muted);
	margin-bottom: 6px;
}

.app_data_metric_value {
	display: block;
	font-size: 18px !important;
	font-weight: 800;
	color: var(--app-text);
}

.app_station_list {
	display: grid;
	gap: 14px;
}

.app_station_card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
	border: 1px solid rgba(0,159,30,0.1);
	border-radius: 22px !important;
	padding: 16px;
	box-shadow: 0 16px 30px rgba(0, 80, 22, 0.08);
}

.app_station_card_head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.app_station_card_title {
	font-size: 15px !important;
	font-weight: 800;
	color: var(--app-text);
}

.app_station_card_time,
.app_station_card_stamp {
	font-size: 12px !important;
	color: var(--app-muted);
}

.app_station_status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	min-height: 40px;
	border-radius: 14px !important;
	background: rgba(0,159,30,0.08);
	border: 1px solid rgba(0,159,30,0.1);
}

.app_station_status > * {
	margin: 0 !important;
}

.app_station_metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.app_station_metric {
	background: #fff;
	border: 1px solid rgba(0,159,30,0.08);
	border-radius: 16px !important;
	padding: 12px;
	box-shadow: 0 10px 22px rgba(0, 80, 22, 0.05);
}

.app_station_metric_label {
	display: block;
	font-size: 12px !important;
	color: var(--app-muted);
	margin-bottom: 6px;
}

.app_station_metric_value {
	display: block;
	font-size: 18px !important;
	font-weight: 800;
	color: var(--app-text);
}

.app_station_card_footer {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed rgba(0,159,30,0.12);
}

@media only screen and (max-width: 767px) {
	.app_welcome_top {
		flex-direction: column;
	}

	.app_welcome_avatar {
		width: 54px;
		height: 54px;
		border-radius: 18px !important;
	}

	.app_data_card_head {
		flex-direction: column;
		align-items: flex-start;
	}

	.app_data_metrics {
		grid-template-columns: 1fr;
	}

	.page-content-app {
		padding: 12px 12px 88px;
	}

	.top_tabs {
		margin-bottom: 12px;
	}

	.top_tabs li a,
	.app_tabs .btn {
		min-height: 42px;
		padding: 10px 14px !important;
	}

	.report_section_card,
	.report_row_card,
	.app_station_card,
	.app_data_card,
	.folder_summary_card,
	.table-responsive {
		border-radius: 18px !important;
		padding: 14px;
	}

	.app_station_card_head {
		flex-direction: column;
	}

	.app_station_metrics {
		grid-template-columns: 1fr;
	}
}
