*
{
	box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body
{
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-size: 16px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	background-color: #fff;
	color: #333;
}

h1,
h2,
h3
{
	margin: 0 0 1rem 0;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"]
{
	display: inline-block;
	height: 38px;
	padding: 0 20px;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	box-sizing: border-box;
	background-color: #24878E;
	border-color: #24878E;
	border-radius: 4px;
	border: none;
	background-image: url('/assets/img/btn.png');
	background-repeat: no-repeat;
	background-size: auto;
	color: #fff;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus
{
	outline: 0;
	color: white;
	background-color: #2D5C6E;
	border-color: #2D5C6E;
}

.footer
{
	text-align: center;
	padding: 1rem;
	background: #f0f0f0;
	margin-top: 2rem;
	font-size: 0.9rem;
	color: #666;
}

.form-floating
{
	position: relative;
	margin-bottom: 1.5rem;
}

.form-floating input,
.form-floating textarea,
.form-floating select
{
	width: 100%;
	padding: 1rem 0.5rem 0.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	background: white;
	font-size: inherit;
}

.form-floating input:focus,
.form-floating textarea:focus,
.form-floating select:focus
{
	outline: none;
	border-color: #287180;
}

.form-floating label
{
	position: absolute;
	top: 1rem;
	left: 0.5rem;
	font-size: 1rem;
	color: #333;
	background: white;
	pointer-events: none;
	transition: 0.2s ease all;
	opacity: 1;
}

.form-floating input:focus+label,
.form-floating input:not(:placeholder-shown)+label,
.form-floating textarea:focus+label,
.form-floating textarea:not(:placeholder-shown)+label,
.form-floating select:focus+label,
.form-floating select:valid+label
{
	top: 0.2rem;
	font-size: 0.75rem;
	color: #3CA08C;
	padding: 0 0.25rem;
}

.form-radio-group
{
	margin-bottom: 1rem;
}

.form-radio-group label
{
	margin-right: 1rem;
	display: inline-flex;
	align-items: center;
	font-weight: normal;
}

.autocomplete-wrapper
{
	position: relative;
	width: 100%;
}

.autocomplete-items
{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: #fff;
	border: 1px solid #ccc;
	border-top: none;
	max-height: 250px;
	overflow-y: auto;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.autocomplete-items div
{
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.autocomplete-items div:hover
{
	background-color: #f0f0f0;
}

.sidebar
{
	background: #2C9D98;
	color: white;
	width: 200px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	overflow-y: auto;
	transition: transform 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	scrollbar-width: thin;
}

.sidebar h1
{
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1rem;
}

.sidebar a
{
	display: block;
	color: white;
	text-decoration: none;
	padding: 0.5rem;
	margin-bottom: 0.3rem;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease;
}

.sidebar a:hover,
.sidebar a.nav-active
{
	background: #fff;
	color: #287180;
	font-weight: bold;
	box-shadow: inset 4px 0 0 #287180;
}

.main-content
{
	margin-left: 220px;
	padding: 1rem;
	transition: margin-left 0.3s ease;
}

.sidebar-toggle
{
	display: none;
}

.sidebar-overlay
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 999;
}

input,
select,
textarea
{
	font-family: inherit;
	font-size: inherit;
}

.sidebar-logo
{
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.sidebar-logo img
{
	width: auto;
	height: 60px;
	object-fit: contain;
}

.sidebar-logo .logo-text
{
	font-size: 1.5rem;
	font-weight: bold;
	color: white;
	margin-left: -10px;
}

@media (max-width: 768px)
{
	.sidebar
	{
		transform: translateX(-100%);
	}

	.sidebar.open
	{
		transform: translateX(0);
	}

	.sidebar-toggle
	{
		display: block;
		top: 1rem;
		left: 1rem;
		z-index: 1101;
		margin: 1rem;
	}

	.main-content
	{
		margin-left: 0;
	}

	.main-content.sidebar-open
	{
		margin-left: 0;
	}

	.sidebar.open+.sidebar-overlay
	{
		display: block;
	}
}


.table-wrapper
{
	overflow-x: auto;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	background: white;
}

table
{
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	color: #333;
}

thead
{
	background-color: #f4f6f8;
	text-align: left;
}

thead th
{
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
}

tbody td
{
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
}

tbody tr:nth-child(even)
{
	background-color: #eee;
}

tbody tr:hover
{
	background-color: #f1f5f9;
}

td,
th
{
	word-wrap: break-word;
	white-space: normal;
}

table input[type="text"],
table input[type="number"],
table input[type="date"],
table select,
table textarea
{
	width: 100%;
	box-sizing: border-box;
	padding: 0.4rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}

table textarea
{
	resize: vertical;
	min-height: 60px;
}

table input:focus,
table select:focus,
table textarea:focus
{
	border-color: #287180;
	outline: none;
}

table td
{
	vertical-align: top;
}


.container
{
	box-sizing: border-box;
}

.column,
.columns
{
	width: 100%;
	float: left;
	box-sizing: border-box;
}

/* For devices larger than 550px */
@media (min-width: 769px)
{

	.column,
	.columns
	{
		margin-left: 4%;
	}

	.column:first-child,
	.columns:first-child
	{
		margin-left: 0;
	}

	.one.column,
	.one.columns
	{
		width: 4.66666666667%;
	}

	.two.columns
	{
		width: 13.3333333333%;
	}

	.three.columns
	{
		width: 22%;
	}

	.four.columns
	{
		width: 30.6666666667%;
	}

	.five.columns
	{
		width: 39.3333333333%;
	}

	.six.columns
	{
		width: 48%;
	}

	.seven.columns
	{
		width: 56.6666666667%;
	}

	.eight.columns
	{
		width: 65.3333333333%;
	}

	.nine.columns
	{
		width: 74.0%;
	}

	.ten.columns
	{
		width: 82.6666666667%;
	}

	.eleven.columns
	{
		width: 91.3333333333%;
	}

	.twelve.columns
	{
		width: 100%;
		margin-left: 0;
	}

	.one-third.column
	{
		width: 30.6666666667%;
	}

	.two-thirds.column
	{
		width: 65.3333333333%;
	}

	.one-half.column
	{
		width: 48%;
	}

	/* Offsets */
	.offset-by-one.column,
	.offset-by-one.columns
	{
		margin-left: 8.66666666667%;
	}

	.offset-by-two.column,
	.offset-by-two.columns
	{
		margin-left: 17.3333333333%;
	}

	.offset-by-three.column,
	.offset-by-three.columns
	{
		margin-left: 26%;
	}

	.offset-by-four.column,
	.offset-by-four.columns
	{
		margin-left: 34.6666666667%;
	}

	.offset-by-five.column,
	.offset-by-five.columns
	{
		margin-left: 43.3333333333%;
	}

	.offset-by-six.column,
	.offset-by-six.columns
	{
		margin-left: 52%;
	}

	.offset-by-seven.column,
	.offset-by-seven.columns
	{
		margin-left: 60.6666666667%;
	}

	.offset-by-eight.column,
	.offset-by-eight.columns
	{
		margin-left: 69.3333333333%;
	}

	.offset-by-nine.column,
	.offset-by-nine.columns
	{
		margin-left: 78.0%;
	}

	.offset-by-ten.column,
	.offset-by-ten.columns
	{
		margin-left: 86.6666666667%;
	}

	.offset-by-eleven.column,
	.offset-by-eleven.columns
	{
		margin-left: 95.3333333333%;
	}

	.offset-by-one-third.column,
	.offset-by-one-third.columns
	{
		margin-left: 34.6666666667%;
	}

	.offset-by-two-thirds.column,
	.offset-by-two-thirds.columns
	{
		margin-left: 69.3333333333%;
	}

	.offset-by-one-half.column,
	.offset-by-one-half.columns
	{
		margin-left: 52%;
	}

}

.u-full-width
{
	width: 100%;
	box-sizing: border-box;
}

.u-max-full-width
{
	max-width: 100%;
	box-sizing: border-box;
}

.u-pull-right
{
	float: right;
}

.u-pull-left
{
	float: left;
}

hr
{
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}

.container:after,
.row:after
{
	content: "";
	display: table;
	clear: both;
}