/*

Theme Name: Aurora Traffic Theme

Theme URI: http://auroratraffic.com/

Description: A custom Aurora Traffic theme for LFMTE traffic exchanges.

Version: 1.0

Based on: LFMTE Sidebar Theme by Josh Abbott

*/


@charset "utf-8";

/* Aurora Traffic Color Variables */
:root {
	--aurora-blue: #0033cc;
	--aurora-dark-blue: #001a66;
	--aurora-green: #00cc00;
	--aurora-bright-green: #00ff00;
	--aurora-gold: #d4a84b;
	--aurora-bright-gold: #ffd700;
	--aurora-cyan: #00cccc;
	--aurora-bright-cyan: #00ffff;
	--aurora-dark: #000033;
	--aurora-sidebar: #003366;
}

/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	background: #0000cc;
	background-attachment: fixed;
	min-height: 100vh;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 50px;
	margin: 0.8rem 1.2rem 0.5rem 1.2rem;
	filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.5));
}


/* Styles for the top bar */

.lfm_topbar {
	background: #0000aa;
	border-bottom: 2px solid #00cccc;
	color: #FFFFFF;
	margin-bottom: 0;
}


/* Styles for the slidebar navigation */

.lfm_slidebar {
	min-width: 225px;
	max-width: 225px;
	min-height: 100vh;
	transition: all 0.4s ease-in-out;
	background: #00cccc;
	border-right: 2px solid #00ffff;
}

/* 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: #ffff00;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #ffffff;
}

.lfm_slidebar_mainmenu {
	list-style: none;
	padding-left: 0;
	overflow: auto;
}


/* This sets the style of the slidebar menu items */
.lfm_slidebar_mainmenu li > a {
	color: #00cc00;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	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;
}

/* 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: #ffff00;
	background: rgba(0, 0, 0, 0.1);
}



/* Styles for the footer */

.lfm_footer {
	background: #00cc00;
	border-top: 3px solid #ffcc00;
	width: 100%;
	max-width: 1387px;
	min-height: 321px;
	margin: 20px auto 0 auto;
	padding: 0;
}

.lfm_footer .footer-content {
	background: linear-gradient(180deg, #003366 0%, #001a33 100%);
	min-height: 321px;
	padding: 40px 20px;
	display: flex;
	align-items: center;
}

.lfm_footer h4,
.lfm_footer h5 {
	color: #ffd700;
}

.lfm_footer .text-cyan,
.lfm_footer a.text-cyan {
	color: #00cccc !important;
}

.lfm_footer .text-cyan:hover,
.lfm_footer a.text-cyan:hover {
	color: #00ffff !important;
}


/* Icon settings */

.far, .fas {
	margin-right:3px;
}

.feedicon {
	color: var(--aurora-cyan);
	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: linear-gradient(180deg, var(--aurora-gold) 0%, #b8942f 50%, var(--aurora-gold) 100%);
	border-radius: 4px;
	border: 2px solid var(--aurora-bright-gold);
	display:inline-block;
	cursor:pointer;
	color: #000000;
	font-family:arial;
	font-size:18px;
	font-weight:600;
	padding:4px 7px;
	margin:2px 1px 2px 1px;
	text-decoration:none;
	box-shadow: 0 2px 8px rgba(212, 168, 75, 0.5);
	text-shadow: none;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color: #000000;
	background: linear-gradient(180deg, var(--aurora-bright-gold) 0%, var(--aurora-gold) 50%, var(--aurora-bright-gold) 100%);
	text-decoration:none;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.7);
}


.infobar {
	/* This class defines sections that span the entire page width */
	width:100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color:#FFFFFF;
	background: linear-gradient(90deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 102, 51, 0.9) 50%, rgba(0, 51, 102, 0.9) 100%);
	border-top: 1px solid var(--aurora-green);
	border-bottom: 1px solid var(--aurora-green);
}
.infobar h2 {
	color: var(--aurora-bright-gold);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}


.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: var(--aurora-bright-gold);
	font-size:32px;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.lfm_descr {
	font-family: "Arial";
	color: #ffffff;
	font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial";
	color: var(--aurora-bright-cyan);
	font-size:16px;
	font-weight:700;
}


/* Aurora Traffic Custom Header Banner */
.aurora-header-banner {
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
	background: #00cc00;
}

.aurora-header-banner img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Aurora Traffic Promotional Banner */
.aurora-promo-banner {
	width: 100%;
	text-align: center;
	padding: 20px 0;
	margin: 20px 0 0 0;
}

.aurora-promo-banner a {
	display: inline-block;
}

.aurora-promo-banner img {
	max-width: 90%;
	max-height: 150px;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(212, 168, 75, 0.5), 0 0 30px rgba(0, 204, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aurora-promo-banner img:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 25px rgba(212, 168, 75, 0.7), 0 0 40px rgba(0, 255, 0, 0.4);
}


/* Custom styles for Bootstrap elements to match Aurora theme */

.btn-success {
	background: #cc0000;
	border: 1px solid #ff0000;
	color: #ffffff;
	font-weight: 600;
}

.btn-success:hover {
	background: #ff0000;
	border-color: #ff3333;
}

.btn-primary {
	background: linear-gradient(180deg, #0066cc 0%, #0044aa 50%, #0066cc 100%);
	border: 2px solid var(--aurora-cyan);
	box-shadow: 0 2px 8px rgba(0, 204, 204, 0.4);
}

.btn-primary:hover {
	background: linear-gradient(180deg, #0088ff 0%, #0066cc 50%, #0088ff 100%);
	border-color: var(--aurora-bright-cyan);
	box-shadow: 0 4px 12px rgba(0, 255, 255, 0.5);
}


/* Card styling for Aurora theme */
.card {
	background: linear-gradient(180deg, rgba(0, 26, 77, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
	border: 1px solid var(--aurora-cyan);
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.card-header {
	background: linear-gradient(90deg, #003366 0%, #004488 50%, #003366 100%);
	border-bottom: 2px solid var(--aurora-green);
	color: var(--aurora-bright-gold);
}

.card-body {
	color: #ffffff;
}


/* Table styling for Aurora theme */
.table {
	color: #ffffff;
}

.table thead th {
	background: linear-gradient(180deg, #003366 0%, #002244 100%);
	color: var(--aurora-bright-gold);
	border-bottom: 2px solid var(--aurora-green);
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 51, 102, 0.5);
}

.table-striped tbody tr:nth-of-type(even) {
	background-color: rgba(0, 26, 77, 0.5);
}

.table-bordered {
	border: 1px solid var(--aurora-cyan);
}

.table-bordered td,
.table-bordered th {
	border: 1px solid rgba(0, 204, 204, 0.3);
}


/* Form styling */
.form-control {
	background-color: rgba(0, 26, 77, 0.9);
	border: 1px solid var(--aurora-cyan);
	color: #ffffff;
}

.form-control:focus {
	background-color: rgba(0, 51, 102, 0.95);
	border-color: var(--aurora-bright-green);
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
	color: #ffffff;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}


/* Alert styling */
.alert-success {
	background: linear-gradient(90deg, rgba(0, 102, 0, 0.9) 0%, rgba(0, 153, 0, 0.9) 50%, rgba(0, 102, 0, 0.9) 100%);
	border: 1px solid var(--aurora-bright-green);
	color: #ffffff;
}

.alert-info {
	background: linear-gradient(90deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 102, 153, 0.9) 50%, rgba(0, 51, 102, 0.9) 100%);
	border: 1px solid var(--aurora-cyan);
	color: #ffffff;
}

.alert-warning {
	background: linear-gradient(90deg, rgba(153, 102, 0, 0.9) 0%, rgba(204, 153, 0, 0.9) 50%, rgba(153, 102, 0, 0.9) 100%);
	border: 1px solid var(--aurora-bright-gold);
	color: #ffffff;
}

.alert-danger {
	background: linear-gradient(90deg, rgba(153, 0, 0, 0.9) 0%, rgba(204, 0, 0, 0.9) 50%, rgba(153, 0, 0, 0.9) 100%);
	border: 1px solid #ff3333;
	color: #ffffff;
}


/* Link styling */
a {
	color: var(--aurora-cyan);
}

a:hover {
	color: var(--aurora-bright-green);
	text-decoration: none;
}


/* Content area styling */
.content {
	padding: 20px 10px;
}


/* Heading styles */
h1, h2, h3, h4, h5, h6 {
	color: var(--aurora-bright-gold);
	text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}


/* Badge styling */
.badge-success {
	background-color: var(--aurora-green);
}

.badge-primary {
	background-color: var(--aurora-blue);
}

.badge-info {
	background-color: var(--aurora-cyan);
	color: #000000;
}

.badge-warning {
	background-color: var(--aurora-gold);
	color: #000000;
}


/* Aurora glow effect for special elements */
.aurora-glow {
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.4), 0 0 40px rgba(0, 204, 204, 0.2);
}


/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #001a33;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--aurora-cyan) 0%, var(--aurora-blue) 100%);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, var(--aurora-bright-cyan) 0%, var(--aurora-cyan) 100%);
}


/* Navigation dropdown styling */
.dropdown-menu {
	background: linear-gradient(180deg, #001a4d 0%, #002266 100%);
	border: 1px solid var(--aurora-cyan);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
	color: var(--aurora-bright-cyan);
}

.dropdown-item:hover {
	background: linear-gradient(90deg, #003366 0%, #004488 50%, #003366 100%);
	color: var(--aurora-bright-gold);
}


/* Progress bar styling */
.progress {
	background-color: rgba(0, 26, 77, 0.8);
	border: 1px solid var(--aurora-cyan);
}

.progress-bar {
	background: linear-gradient(90deg, var(--aurora-green) 0%, var(--aurora-bright-green) 50%, var(--aurora-green) 100%);
}


/* Text utility classes */
.text-aurora-gold {
	color: var(--aurora-bright-gold) !important;
}

.text-aurora-green {
	color: var(--aurora-bright-green) !important;
}

.text-aurora-cyan {
	color: var(--aurora-bright-cyan) !important;
}


/* Pagination styling */
.page-link {
	background-color: rgba(0, 26, 77, 0.9);
	border-color: var(--aurora-cyan);
	color: var(--aurora-cyan);
}

.page-link:hover {
	background-color: rgba(0, 51, 102, 0.95);
	border-color: var(--aurora-bright-green);
	color: var(--aurora-bright-green);
}

.page-item.active .page-link {
	background: linear-gradient(180deg, var(--aurora-green) 0%, #009900 100%);
	border-color: var(--aurora-bright-green);
}
