/*

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: #ffffff;
	background-color: #2d7f03;
	margin: 0;
	padding: 0;
	min-height: 100vh;
}


/* Custom Header Banner Styles */

.custom-header-banner {
	width: 100%;
	background: linear-gradient(135deg, #000428 0%, #004e92 100%);
	padding: 20px 0;
	text-align: center;
	position: relative;
}

.custom-header-banner .header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.header-banner-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-height: 200px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.header-banner-img {
		max-height: 150px;
	}
	.custom-header-banner {
		padding: 15px 0;
	}
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
	background: transparent;
}
.main {
	width: 100%;
	background: transparent;
}

/* Content area styling */
.content {
	background: rgba(0, 20, 40, 0.85);
	color: #ffffff;
	border-radius: 8px;
	margin: 10px;
	padding: 15px;
}

.container-fluid {
	background: transparent;
}

/* Override default Bootstrap/LFMTE backgrounds to show starfield */
.container, .container-fluid, main {
	background: transparent !important;
}


/* Custom Footer Banner Styles */

.custom-footer-banner {
	width: 100%;
	background: linear-gradient(135deg, #004e92 0%, #000428 100%);
	padding: 20px 0;
	text-align: center;
	position: relative;
	margin-top: 40px;
}

.custom-footer-banner .footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.footer-banner-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-height: 200px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.footer-banner-img {
		max-height: 150px;
	}
	.custom-footer-banner {
		padding: 15px 0;
	}
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
	margin: 0.5rem 1.2rem 0.3rem 1.2rem;
}

.lfm_text_logo {
	display: block;
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	color: #FFD700;
	text-align: center;
	padding: 0.8rem 1.2rem;
	margin: 0.3rem 0;
	background: linear-gradient(135deg, #001428 0%, #003e80 100%);
	border-bottom: 2px solid rgba(0, 150, 255, 0.5);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 206, 209, 0.4);
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.lfm_text_logo:hover {
	color: #00CCFF;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 206, 209, 0.8);
	text-decoration: none;
	transform: scale(1.05);
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(90deg, #0066cc 0%, #004e92 100%);
	color: #EEEEEE;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 100, 200, 0.4);
}


/* 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, #001428 0%, #003e80 50%, #001428 100%);
	box-shadow: 2px 0 10px rgba(0, 100, 200, 0.3);
}

/* 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: #EEEEEE;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #024eca;
}

.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: #f2f2f2;
	background: linear-gradient(90deg, #0066cc 0%, #0088ee 100%);
	border-bottom: 1px solid rgba(0, 100, 200, 0.5);
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 1.1rem 0.5rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 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: #FFD700;
	background: linear-gradient(90deg, #00aaff 0%, #00ccff 100%);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
	transform: translateX(5px);
}



/* Styles for the footer */

.lfm_footer {
	background-color: #001330;
}


/* 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: linear-gradient(135deg, #cc0000 0%, #ff0000 100%);
	border-radius:2px;
	border:1px solid #990000;
	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;
	box-shadow: 0 2px 6px rgba(200, 0, 0, 0.4);
	transition: all 0.3s ease;
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background: linear-gradient(135deg, #ff0000 0%, #ff3333 100%);
	text-decoration:none;
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.6);
	transform: translateY(-2px);
}


.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: #00ccff;
	font-size: 32px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lfm_descr {
	font-family: "Arial";
	color: #e0e0e0;
	font-size: 16px;
}

.lfm_descr_bold {
	font-family: "Arial";
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
}

/* Card and panel styling for Aurora theme */
.card {
	background: rgba(0, 30, 60, 0.8) !important;
	border: 1px solid rgba(0, 150, 255, 0.3) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(0, 100, 200, 0.2);
}

.card-header {
	background: linear-gradient(90deg, #0066cc 0%, #004e92 100%) !important;
	color: #ffffff !important;
	border-bottom: 2px solid rgba(0, 150, 255, 0.5) !important;
}

.card-body {
	background: rgba(0, 20, 40, 0.7) !important;
	color: #ffffff !important;
}

/* Table styling */
.table {
	color: #ffffff !important;
	background: rgba(0, 20, 40, 0.5) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
	background: rgba(0, 100, 200, 0.1) !important;
}

.table thead th {
	background: linear-gradient(90deg, #0066cc 0%, #004e92 100%) !important;
	color: #ffffff !important;
	border-color: rgba(0, 150, 255, 0.5) !important;
}

/* Button enhancements */
.btn-primary {
	background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%) !important;
	border-color: #cc0000 !important;
	box-shadow: 0 2px 6px rgba(200, 0, 0, 0.4);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #ff0000 0%, #ff3333 100%) !important;
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.6);
	transform: translateY(-2px);
}

.btn-success {
	background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%) !important;
	border-color: #cc0000 !important;
	box-shadow: 0 2px 6px rgba(200, 0, 0, 0.4);
}

.btn-success:hover {
	background: linear-gradient(135deg, #ff0000 0%, #ff3333 100%) !important;
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.6);
}

/* Form inputs styling */
input, select, textarea {
	background: rgba(0, 30, 60, 0.8) !important;
	color: #ffffff !important;
	border: 1px solid rgba(0, 150, 255, 0.5) !important;
}

input::placeholder, textarea::placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* Alert styling */
.alert {
	background: rgba(0, 30, 60, 0.9) !important;
	border: 1px solid rgba(0, 150, 255, 0.5) !important;
	color: #ffffff !important;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
	color: #00ccff !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Link styling */
a {
	color: #00ccff;
	transition: color 0.3s ease;
}

a:hover {
	color: #FFD700;
	text-decoration: none;
}

/* Pagination styling */
.pagination .page-link {
	background: rgba(0, 30, 60, 0.8) !important;
	border-color: rgba(0, 150, 255, 0.5) !important;
	color: #00ccff !important;
}

.pagination .page-link:hover {
	background: rgba(0, 100, 200, 0.8) !important;
	color: #FFD700 !important;
}

.pagination .page-item.active .page-link {
	background: linear-gradient(135deg, #0066cc 0%, #0088ee 100%) !important;
	border-color: #0066cc !important;
	color: #ffffff !important;
}

/* Modal styling */
.modal-content {
	background: rgba(0, 30, 60, 0.95) !important;
	border: 2px solid rgba(0, 150, 255, 0.5) !important;
	color: #ffffff !important;
	box-shadow: 0 10px 30px rgba(0, 100, 200, 0.5);
}

.modal-header {
	background: linear-gradient(90deg, #0066cc 0%, #004e92 100%) !important;
	border-bottom: 2px solid rgba(0, 150, 255, 0.5) !important;
}

.modal-title {
	color: #ffffff !important;
}

/* Badge styling */
.badge-primary {
	background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%) !important;
}

.badge-success {
	background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%) !important;
}

/* Progress bar styling */
.progress {
	background: rgba(0, 30, 60, 0.5) !important;
}

.progress-bar {
	background: linear-gradient(90deg, #0066cc 0%, #00aaff 100%) !important;
}

/* Navbar toggle for mobile */
.navbar-toggler {
	border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Additional section styling for consistency */
section, .row, .col {
	background: transparent !important;
}

/* Jumbotron/Hero sections */
.jumbotron {
	background: rgba(0, 30, 60, 0.75) !important;
	color: #ffffff !important;
	border: 1px solid rgba(0, 150, 255, 0.3);
	box-shadow: 0 4px 12px rgba(0, 100, 200, 0.2);
}

/* Well/Panel equivalents */
.well, .panel {
	background: rgba(0, 30, 60, 0.8) !important;
	border: 1px solid rgba(0, 150, 255, 0.3) !important;
	color: #ffffff !important;
}

/* List groups */
.list-group-item {
	background: rgba(0, 30, 60, 0.8) !important;
	border-color: rgba(0, 150, 255, 0.3) !important;
	color: #ffffff !important;
}

.list-group-item:hover {
	background: rgba(0, 60, 120, 0.9) !important;
}

/* Dropdown menus */
.dropdown-menu {
	background: rgba(0, 30, 60, 0.95) !important;
	border: 1px solid rgba(0, 150, 255, 0.5) !important;
}

.dropdown-item {
	color: #ffffff !important;
}

.dropdown-item:hover {
	background: rgba(0, 100, 200, 0.8) !important;
	color: #FFD700 !important;
}

/* Nav tabs */
.nav-tabs {
	border-bottom-color: rgba(0, 150, 255, 0.5) !important;
}

.nav-tabs .nav-link {
	background: rgba(0, 30, 60, 0.6) !important;
	border-color: rgba(0, 150, 255, 0.3) !important;
	color: #00ccff !important;
}

.nav-tabs .nav-link:hover {
	border-color: rgba(0, 150, 255, 0.5) !important;
	color: #FFD700 !important;
}

.nav-tabs .nav-link.active {
	background: rgba(0, 60, 120, 0.9) !important;
	border-color: rgba(0, 150, 255, 0.5) !important;
	color: #ffffff !important;
}

/* Breadcrumb */
.breadcrumb {
	background: rgba(0, 30, 60, 0.7) !important;
	border: 1px solid rgba(0, 150, 255, 0.3);
}

.breadcrumb-item a {
	color: #00ccff !important;
}

.breadcrumb-item.active {
	color: #ffffff !important;
}