/* cmsms stylesheet: Kricom_BWR_Stylesheet modified: 06/26/26 06:02:22 */

body {
	font-family: 'Raleway', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
	color: #222;
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px;
	background: linear-gradient(
		180deg,
		#5c9bd0 0%,
		#eef5fb 100%
	);
}

.flex-wrapper {
	display: grid;
	grid-template-columns: 220px 1fr 220px;
	gap: 10px;
}

.header {
	grid-column: 1 / 4;
	background: linear-gradient(
		135deg,
		#0099ff,
		#3c89c9
	);
	color: white;
	text-align: center;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.breadcrumb {
	color: white;
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

.menu {
	background: #0099ff;
	border-radius: 12px;
	margin: 10px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.box-left,
.box-right,
.box-center {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.box-left {
	padding: 15px;
}

.box-right {
	padding: 15px;
}

.box-center {
	padding: 25px;
	min-height: 500px;
}

.box-footer {
	grid-column: 1 / 4;
	background: #1f2937;
	color: #dbeafe;
	text-align: center;
	font-size: 0.85rem;
	padding: 15px;
	border-radius: 12px;
	margin-top: 10px;
}

a {
	color: #0099ff;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a.menuactive {
	color: #3c89c9;
}

h1 {
	font-family: 'Sacramento', cursive;
	font-size: 4rem;
	margin: 0;
}

h1 a,
h1 a:hover {
	color: white;
	text-decoration: none;
}

h2,
h3,
h4 {
	font-family: 'Raleway', sans-serif;
	color: #333;
}

h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.3rem;
	margin-top: 1rem;
	text-transform: uppercase;
}

#primary-nav {
	padding: 0;
	margin: 0;
}

#menu {
	display: flex;
	justify-content: center;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu li {
	position: relative;
	display: inline-block;
}

#menu li a {
	display: block;
	padding: 15px 20px;
	color: white;
	font-weight: 600;
}

#menu li:hover {
	background: #3c89c9;
}

.parent {
	border-radius: 8px;
	transition: color 0.2s ease;
}

.parent:hover {
	background: #3c89c9;
}

.parent ul {
	display: none;
}

.nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.nav li {
	position: relative;
}

.nav li a {
	display: block;
	padding: 15px 20px;
	text-decoration: none;
	color: white;
	font-weight: 600;
}

.nav li ul.dropdown-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	background: white;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	overflow: hidden;
}

.nav li:hover > ul.dropdown-menu {
	display: block;
}

.nav li ul.dropdown-menu li {
	display: block;
}

.nav li ul.dropdown-menu li a {
	padding: 12px 15px;
	color: #333;
	background: white;
}

.nav li ul.dropdown-menu li a:hover {
	background: #f3f8fc;
	color: #0099ff;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
	background: white;
}

table th {
	background: #0099ff;
	color: white;
	padding: 10px;
}

table td {
	padding: 10px;
	border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 900px) {
	.flex-wrapper {
		grid-template-columns: 1fr;
	}

	.header,
	.box-footer {
		grid-column: auto;
	}

	.box-left,
	.box-right,
	.box-center {
		width: auto;
	}

	.nav {
		flex-direction: column;
	}

	.nav li {
		display: block;
	}

	.nav li ul.dropdown-menu {
		position: static;
		box-shadow: none;
		border-radius: 0;
	}
}
