/*

Theme Name: LFMTE Sidebar Theme

Theme URI: http://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #212529;
	background: linear-gradient(180deg, #40E0D0 0%, #20B8C8 50%, #1090A8 100%);
	background-attachment: fixed;
	position: relative;
	min-height: 100vh;
}

/* Futuristic animated grid background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(0, 100, 130, 0.15) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 100, 130, 0.15) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 20s linear infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes gridMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

/* Glowing wave effect at top */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
	animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 0.7; }
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
	position: relative;
	z-index: 1;
}
.main {
	width: 100%;
	position: relative;
	z-index: 1;
}



/* Site logo styles - Logo removed per user request */

.lfm_menu_logo {
	display: none;
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(135deg, #006E95 0%, #0088BB 100%);
	color: #FFFFFF;
	margin-bottom: 0;
	border-bottom: 2px solid rgba(0, 150, 180, 0.5);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 200;
	width: 100%;
}


/* Styles for the slidebar navigation */

.lfm_slidebar {
	min-width: 225px;
	max-width: 225px;
	min-height: 100vh;
	transition: all 0.4s ease-in-out;
	background: linear-gradient(180deg, #003D5C 0%, #00567A 50%, #006E95 100%);
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
	border-right: 2px solid rgba(0, 180, 200, 0.5);
	position: relative;
	z-index: 50;
}

/* Desktop View Settings - Expand the slidebar by default */
@media (min-width: 890px) {
	.lfm_slidebar {
		margin-left: 0px;
	}
	.lfm_slidebar.toggled {
		margin-left: -225px;
	}
}

/* Mobile View Settings - Collapse the slidebar by default */
@media (max-width: 889px) {
	.lfm_slidebar {
		margin-left: -225px;
	}
	.lfm_slidebar.toggled {
		margin-left: 0px;
	}
}

.lfm_slidebar_toggleswitch {
	cursor: pointer;
	font-size: 24px;
	color: #FFFFFF;
	padding-right: 10px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
	transition: all 0.3s ease;
}
.lfm_slidebar_toggleswitch:hover {
	color: #00FFFF;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
	transform: scale(1.1);
}

.lfm_slidebar_mainmenu {
	list-style: none;
	padding-left: 0;
	padding-top: 10px;
	overflow: auto;
	margin-top: 0;
}


/* This sets the style of the slidebar menu items */
.lfm_slidebar_mainmenu li > a {
	color: #000000;
	background: linear-gradient(135deg, #5DD9E8 0%, #40C0D8 100%);
	border-bottom: 1px solid rgba(0, 80, 100, 0.3);
	border-left: 3px solid transparent;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* This sets the colors of the slidebar menu links when you hover over them */
.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
	color: #000000;
	background: linear-gradient(135deg, #70E5F5 0%, #55D0E5 100%);
	border-left: 3px solid #FFD700;
	box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.4);
	transform: translateX(3px);
}



/* Custom Futuristic Header Banner */

.custom-header-banner {
	position: relative;
	background: linear-gradient(135deg, #20B8D8 0%, #30C8E8 50%, #40D8F8 100%);
	padding: 40px 20px;
	margin-bottom: 0;
	overflow: hidden;
	border-bottom: 3px solid rgba(0, 100, 130, 0.4);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	width: 100%;
	z-index: 150;
}

.header-waves {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 20px,
			rgba(255, 255, 255, 0.15) 20px,
			rgba(255, 255, 255, 0.15) 40px
		);
	animation: waveMove 15s linear infinite;
	pointer-events: none;
}

@keyframes waveMove {
	0% { background-position: 0 0; }
	100% { background-position: 100px 0; }
}

.header-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.site-branding {
	margin: 0 auto;
	max-width: 800px;
}

.site-title {
	font-size: 48px;
	font-weight: 900;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 10px;
	text-shadow:
		0 0 15px rgba(255, 255, 255, 0.9),
		0 0 25px rgba(200, 240, 255, 0.6),
		2px 2px 8px rgba(0, 80, 120, 0.8),
		-2px -2px 8px rgba(0, 80, 120, 0.5);
	animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
	0% {
		text-shadow:
			0 0 15px rgba(255, 255, 255, 0.9),
			0 0 25px rgba(200, 240, 255, 0.6),
			2px 2px 8px rgba(0, 80, 120, 0.8),
			-2px -2px 8px rgba(0, 80, 120, 0.5);
	}
	100% {
		text-shadow:
			0 0 20px rgba(255, 255, 255, 1),
			0 0 35px rgba(200, 240, 255, 0.8),
			2px 2px 10px rgba(0, 80, 120, 0.9),
			-2px -2px 10px rgba(0, 80, 120, 0.6);
	}
}

.site-tagline {
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
	text-shadow: 0 2px 6px rgba(0, 80, 120, 0.8);
}

/* Mobile responsive header */
@media (max-width: 768px) {
	.site-title {
		font-size: 32px;
		letter-spacing: 2px;
	}
	.site-tagline {
		font-size: 12px;
		letter-spacing: 1px;
	}
	.custom-header-banner {
		padding: 25px 15px;
	}
}

/* Content area styling */

.content {
	background: rgba(255, 255, 255, 0.98);
	border-radius: 8px;
	margin: 20px;
	padding: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	border: 2px solid rgba(0, 120, 150, 0.2);
	position: relative;
	z-index: 10;
}

/* Styles for the footer */

.lfm_footer {
	background: linear-gradient(135deg, #001020 0%, #001F3F 100%);
	border-top: 2px solid rgba(0, 255, 255, 0.3);
}


/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color:#3097D1;
	font-size:20px;
	margin-right:5px;
}


/* Profile picture sizes */

.profilepic_small {
	width:40px;
	height:40px;
}

.profilepic_med {
	width:75px;
	height:75px;
}

.profilepic_large {
	width:200px;
	height:200px;
}


/* Various styles */

.buttonlink {
	/* This class defines <a> tag links that look like buttons */
	cursor: pointer;
	background-color:#1468e5;
	border-radius:2px;
	border:1px solid #002175;
	display:inline-block;
	cursor:pointer;
	color:#FFFFFF;
	font-family:arial;
	font-size:18px;
	font-weight:500;
	padding:4px 7px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background-color:#3385FF;
	text-decoration:none;
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#FFFFFF;
	background-color:#555555;
}
.infobar h2 {
	color:#FFFFFF;
}


.vcenter {
	/* This is a class that can be used in Bootstrap rows to vertically center the content */
	display: flex;
	align-items: center;
}


/* The next 3 sections control various text styles used throughout the LFM Members Area */
.lfm_title {
	font-family: "Arial"; color:#333333; font-size:32px;
}

.lfm_descr {
	font-family: "Arial"; color:#111111; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color:#000000; font-size:16px;
	font-weight:700;
}


/* Futuristic Button Enhancements */

.btn-primary {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	border: 2px solid rgba(0, 120, 160, 0.5);
	color: #FFFFFF;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	box-shadow: 0 4px 15px rgba(0, 120, 160, 0.3);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #00A8DD 0%, #00C8FF 100%);
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 6px 20px rgba(0, 150, 200, 0.5);
	transform: translateY(-2px);
}

.btn-success {
	background: linear-gradient(135deg, #00AA66 0%, #00DD88 100%);
	border: 2px solid rgba(0, 255, 200, 0.5);
	color: #FFFFFF;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 15px rgba(0, 221, 136, 0.3);
	transition: all 0.3s ease;
}

.btn-success:hover {
	background: linear-gradient(135deg, #00DD88 0%, #00FFAA 100%);
	border-color: #00FFC8;
	box-shadow: 0 6px 20px rgba(0, 255, 200, 0.5);
	transform: translateY(-2px);
}

.btn-danger {
	background: linear-gradient(135deg, #CC0033 0%, #FF0044 100%);
	border: 2px solid rgba(255, 100, 100, 0.5);
	color: #FFFFFF;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 15px rgba(255, 0, 68, 0.3);
	transition: all 0.3s ease;
}

.btn-danger:hover {
	background: linear-gradient(135deg, #FF0044 0%, #FF3366 100%);
	box-shadow: 0 6px 20px rgba(255, 0, 68, 0.5);
	transform: translateY(-2px);
}

.btn-warning {
	background: linear-gradient(135deg, #FF8800 0%, #FFAA00 100%);
	border: 2px solid rgba(255, 170, 0, 0.5);
	color: #FFFFFF;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
	transition: all 0.3s ease;
}

.btn-warning:hover {
	background: linear-gradient(135deg, #FFAA00 0%, #FFCC00 100%);
	box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
	transform: translateY(-2px);
}

.btn-info {
	background: linear-gradient(135deg, #0099CC 0%, #00BBEE 100%);
	border: 2px solid rgba(0, 187, 238, 0.5);
	color: #FFFFFF;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 15px rgba(0, 187, 238, 0.3);
	transition: all 0.3s ease;
}

.btn-info:hover {
	background: linear-gradient(135deg, #00BBEE 0%, #00DDFF 100%);
	box-shadow: 0 6px 20px rgba(0, 221, 255, 0.5);
	transform: translateY(-2px);
}


/* Bootstrap Card Enhancements */

.card {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 206, 209, 0.3);
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 206, 209, 0.2);
	transition: all 0.3s ease;
}

.card:hover {
	border-color: rgba(0, 255, 255, 0.6);
	box-shadow: 0 8px 30px rgba(0, 206, 209, 0.4);
	transform: translateY(-4px);
}

.card-header {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	color: #FFFFFF;
	border-bottom: 2px solid rgba(0, 150, 180, 0.4);
	font-weight: 600;
}

.card-footer {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-top: 2px solid rgba(0, 206, 209, 0.2);
}


/* Table Enhancements */

.table {
	background: rgba(255, 255, 255, 0.95);
}

.table thead th {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	color: #FFFFFF;
	border-bottom: 2px solid rgba(0, 150, 180, 0.5);
	font-weight: 600;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 206, 209, 0.05);
}

.table-hover tbody tr:hover {
	background-color: rgba(0, 206, 209, 0.1);
}


/* Alert Enhancements */

.alert {
	border-radius: 8px;
	border-width: 2px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
	background: linear-gradient(135deg, rgba(0, 170, 102, 0.1) 0%, rgba(0, 221, 136, 0.1) 100%);
	border-color: #00DD88;
	color: #006644;
}

.alert-danger {
	background: linear-gradient(135deg, rgba(204, 0, 51, 0.1) 0%, rgba(255, 0, 68, 0.1) 100%);
	border-color: #FF0044;
	color: #990033;
}

.alert-warning {
	background: linear-gradient(135deg, rgba(255, 136, 0, 0.1) 0%, rgba(255, 170, 0, 0.1) 100%);
	border-color: #FFAA00;
	color: #996600;
}

.alert-info {
	background: linear-gradient(135deg, rgba(0, 153, 204, 0.1) 0%, rgba(0, 187, 238, 0.1) 100%);
	border-color: #00BBEE;
	color: #006699;
}


/* Form Input Enhancements */

.form-control {
	border: 2px solid rgba(0, 206, 209, 0.3);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #00CED1;
	box-shadow: 0 0 15px rgba(0, 206, 209, 0.4);
}


/* Badge Enhancements */

.badge-primary {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	box-shadow: 0 2px 8px rgba(0, 120, 160, 0.3);
}

.badge-success {
	background: linear-gradient(135deg, #00AA66 0%, #00DD88 100%);
	box-shadow: 0 2px 8px rgba(0, 221, 136, 0.3);
}

.badge-danger {
	background: linear-gradient(135deg, #CC0033 0%, #FF0044 100%);
	box-shadow: 0 2px 8px rgba(255, 0, 68, 0.3);
}

.badge-warning {
	background: linear-gradient(135deg, #FF8800 0%, #FFAA00 100%);
	box-shadow: 0 2px 8px rgba(255, 170, 0, 0.3);
}

.badge-info {
	background: linear-gradient(135deg, #0099CC 0%, #00BBEE 100%);
	box-shadow: 0 2px 8px rgba(0, 187, 238, 0.3);
}


/* Progress Bar Enhancements */

.progress {
	background-color: rgba(0, 31, 63, 0.2);
	border-radius: 8px;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.progress-bar {
	background: linear-gradient(135deg, #00CED1 0%, #00FFFF 100%);
	box-shadow: 0 2px 10px rgba(0, 206, 209, 0.5);
	animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
	0%, 100% { box-shadow: 0 2px 10px rgba(0, 206, 209, 0.5); }
	50% { box-shadow: 0 2px 15px rgba(0, 255, 255, 0.8); }
}


/* Modal Enhancements */

.modal-content {
	border: 2px solid rgba(0, 206, 209, 0.4);
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 206, 209, 0.3);
}

.modal-header {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	color: #FFFFFF;
	border-bottom: 2px solid rgba(0, 150, 180, 0.4);
}

.modal-footer {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-top: 2px solid rgba(0, 206, 209, 0.2);
}


/* Link Color Enhancements */

a {
	color: #0066CC;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #00AAFF;
	text-decoration: none;
	text-shadow: 0 0 8px rgba(0, 170, 255, 0.4);
}


/* Scrollbar Styling for Webkit Browsers */

::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: #20B8C8;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #006E95 0%, #0088BB 100%);
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #0088BB 0%, #00A0DD 100%);
	border-color: rgba(255, 255, 255, 0.5);
}


/* Heading Enhancements */

h1, h2, h3, h4, h5, h6 {
	color: #003366;
	font-weight: 700;
}

.content h1 {
	color: #003366;
	text-shadow: 0 2px 4px rgba(0, 206, 209, 0.2);
	border-bottom: 3px solid rgba(0, 206, 209, 0.3);
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.content h2 {
	color: #004080;
	text-shadow: 0 1px 3px rgba(0, 206, 209, 0.15);
	border-bottom: 2px solid rgba(0, 206, 209, 0.2);
	padding-bottom: 8px;
	margin-bottom: 15px;
}


/* Pagination Enhancements */

.pagination .page-link {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 206, 209, 0.3);
	color: #003366;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pagination .page-link:hover {
	background: linear-gradient(135deg, #003366 0%, #0055AA 100%);
	border-color: #00FFFF;
	color: #FFFFFF;
	box-shadow: 0 4px 15px rgba(0, 206, 209, 0.4);
}

.pagination .page-item.active .page-link {
	background: linear-gradient(135deg, #003366 0%, #004080 100%);
	border-color: #00CED1;
	box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}


/* Dropdown Menu Enhancements */

.dropdown-menu {
	background: rgba(255, 255, 255, 0.98);
	border: 2px solid rgba(0, 206, 209, 0.4);
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 206, 209, 0.3);
}

.dropdown-item {
	color: #003366;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background: linear-gradient(135deg, rgba(0, 206, 209, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
	color: #0055AA;
}


/* Breadcrumb Enhancements */

.breadcrumb {
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 85, 170, 0.05) 100%);
	border: 2px solid rgba(0, 206, 209, 0.2);
	border-radius: 8px;
}

.breadcrumb-item.active {
	color: #003366;
	font-weight: 600;
}


/* Nav Tabs Enhancements */

.nav-tabs {
	border-bottom: 3px solid rgba(0, 206, 209, 0.4);
}

.nav-tabs .nav-link {
	color: #003366;
	font-weight: 600;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
	border-color: rgba(0, 206, 209, 0.3);
	background: rgba(0, 206, 209, 0.05);
	color: #0055AA;
}

.nav-tabs .nav-link.active {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	border-color: #00CED1;
	color: #FFFFFF;
	box-shadow: 0 4px 15px rgba(0, 150, 180, 0.3);
}


/* List Group Enhancements */

.list-group-item {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 206, 209, 0.2);
	transition: all 0.3s ease;
}

.list-group-item:hover {
	background: rgba(0, 206, 209, 0.05);
	border-color: rgba(0, 206, 209, 0.4);
}

.list-group-item.active {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	border-color: #00CED1;
	box-shadow: 0 4px 15px rgba(0, 150, 180, 0.3);
}


/* Well/Jumbotron Style Enhancements */

.jumbotron {
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 85, 170, 0.05) 100%);
	border: 2px solid rgba(0, 206, 209, 0.3);
	border-radius: 10px;
	box-shadow: 0 6px 25px rgba(0, 206, 209, 0.2);
}


/* Loading/Spinner Animation Enhancement */

@keyframes spinGlow {
	0% {
		transform: rotate(0deg);
		filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
	}
	100% {
		transform: rotate(360deg);
		filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
	}
}

.spinner-border,
.spinner-grow {
	animation: spinGlow 1s linear infinite;
}


/* Futuristic Scan Line Effect */

.custom-header-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0, 255, 255, 0.03) 2px,
		rgba(0, 255, 255, 0.03) 4px
	);
	pointer-events: none;
	z-index: 1;
}


/* Additional glow effects for special elements */

.btn:focus,
.form-control:focus,
button:focus {
	outline: none;
}

.btn-primary:focus,
.btn-success:focus,
.btn-info:focus,
.btn-warning:focus,
.btn-danger:focus {
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}


/* Container/Row enhancements for the main content */

.container,
.container-fluid {
	position: relative;
	z-index: 10;
}


/* Smooth transitions for all interactive elements */

button,
input,
select,
textarea {
	transition: all 0.3s ease;
}


/* Text selection styling */

::selection {
	background: rgba(0, 206, 209, 0.4);
	color: #FFFFFF;
}

::-moz-selection {
	background: rgba(0, 206, 209, 0.4);
	color: #FFFFFF;
}


/* Navbar brand/logo area enhancement */

.navbar-brand {
	filter: drop-shadow(0 2px 8px rgba(0, 255, 255, 0.4));
	transition: all 0.3s ease;
}

.navbar-brand:hover {
	filter: drop-shadow(0 4px 12px rgba(0, 255, 255, 0.8));
	transform: scale(1.05);
}


/* Enhanced box styles for any special containers */

.box,
.panel,
.well {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 206, 209, 0.3);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 206, 209, 0.2);
	transition: all 0.3s ease;
}

.box:hover,
.panel:hover,
.well:hover {
	border-color: rgba(0, 255, 255, 0.5);
	box-shadow: 0 6px 25px rgba(0, 206, 209, 0.3);
}


/* Tooltip enhancements */

.tooltip-inner {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	border: 1px solid rgba(0, 150, 180, 0.5);
	box-shadow: 0 4px 15px rgba(0, 150, 180, 0.4);
}


/* Popover enhancements */

.popover {
	border: 2px solid rgba(0, 206, 209, 0.4);
	box-shadow: 0 8px 30px rgba(0, 206, 209, 0.3);
}

.popover-header {
	background: linear-gradient(135deg, #0088BB 0%, #00A8DD 100%);
	color: #FFFFFF;
	border-bottom: 2px solid rgba(0, 150, 180, 0.4);
}


/* Final touch: ensure all content is above background effects */

main,
.content,
.main {
	position: relative;
	z-index: 10;
}