/*

Theme Name: Promanual 2026

Theme URI: http://thetrafficexchangescript.com/

Description: A sidebar theme for LFMTE traffic exchanges.

Version: 3.0

Author: Josh Abbott

*/


@charset "utf-8";


/* =========================================================
   Pro Manual Surfer Theme Palette
   Extracted from the promanualsurfer.com screenshot:
   deep-space header/footer, bright blue navigation,
   light-blue content area, gold + electric-blue accents.
   ========================================================= */
:root {
	--pms-space-dark:   #00030a;   /* deepest space black */
	--pms-space-mid:    #011026;   /* midnight navy */
	--pms-space-blue:   #01234f;   /* deep space blue */
	--pms-nav-blue:     #0a84ff;   /* bright navigation blue */
	--pms-nav-blue-lt:  #2f9dff;   /* lighter blue for hovers */
	--pms-accent-gold:  #d8c17a;   /* gold logo text accent */
	--pms-accent-cyan:  #5ab6ff;   /* electric-blue tagline accent */
	--pms-content-bg:   #c3d7ef;   /* light-blue content background */
	--pms-text-dark:    #16324f;   /* dark navy body/heading text */
}


/* Main font settings */

body {
	font-size: 16px;
	font-weight: 400;
	color: var(--pms-text-dark);
	background-color: var(--pms-content-bg);
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles - Pro Manual Surfer banner fills the sidebar width */

.lfm_logo_link {
	display: block;
}
.lfm_menu_logo {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
	border-bottom: 2px solid var(--pms-nav-blue);
}


/* Styles for the top bar */

.lfm_topbar {
	background: linear-gradient(180deg, var(--pms-nav-blue-lt) 0%, var(--pms-nav-blue) 55%, #0062d6 100%);
	color: #ffffff;
	margin-bottom: 0;
	box-shadow: 0 2px 6px rgba(0, 20, 50, 0.35);
}


/* 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, var(--pms-space-dark) 0%, var(--pms-space-mid) 45%, var(--pms-space-blue) 100%);
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4);
}

/* 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;
}
.lfm_slidebar_toggleswitch:hover {
	color: var(--pms-accent-gold);
}

.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: #dcefff;
	background: transparent;
	border-bottom: 1px solid rgba(90, 182, 255, 0.18);
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.55rem 1.1rem 0.55rem 1.1rem;
	font-size: 16px;
	position: relative;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s 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: var(--pms-accent-gold);
	background: rgba(10, 132, 255, 0.30);
	border-left: 3px solid var(--pms-accent-cyan);
	padding-left: calc(1.1rem - 3px);
}



/* Pro Manual Surfer Header Banner - sits on top of the script content */

.pms-header-banner {
	width: 100%;
	background: var(--pms-space-dark);
	line-height: 0;            /* remove inline-image gap */
	overflow: hidden;
}
.pms-header-banner img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}


/* Content area - light-blue "sky" panel between the two space banners */

.content {
	background-color: var(--pms-content-bg);
	padding-top: 20px;
	padding-bottom: 20px;
	min-height: 40vh;
}
.content h1, .content h2, .content h3,
.content h4, .content h5 {
	color: var(--pms-text-dark);
}
/* Plain text links in the content area (exclude Bootstrap/button links,
   which must keep their own text color for contrast) */
.content a:not(.btn):not(.buttonlink):not([class*="btn-"]) {
	color: #0a5ccb;
}
.content a:not(.btn):not(.buttonlink):not([class*="btn-"]):hover {
	color: var(--pms-nav-blue);
}


/* Pro Manual Surfer Footer Banner - sits underneath the script content */

.pms-footer-banner {
	width: 100%;
	background: var(--pms-space-dark);
	line-height: 0;
	overflow: hidden;
}
.pms-footer-banner img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}
.pms-copyright {
	line-height: normal;
	text-align: center;
	color: #9fc4ee;
	background: var(--pms-space-dark);
	font-size: 13px;
	padding: 10px 15px;
	border-top: 1px solid rgba(90, 182, 255, 0.20);
}


/* Styles for the footer */

.lfm_footer {
	background-color: var(--pms-space-mid);
}


/* 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(180deg, var(--pms-nav-blue-lt) 0%, var(--pms-nav-blue) 100%);
	border-radius:4px;
	border:1px solid #0056b8;
	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 4px rgba(0, 20, 50, 0.25);
}
.buttonlink:hover {
	/* This controls the button links when you hover over them */
	color:#FFFFFF;
	background: linear-gradient(180deg, #4db0ff 0%, var(--pms-nav-blue-lt) 100%);
	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: linear-gradient(180deg, var(--pms-space-mid) 0%, var(--pms-space-blue) 100%);
}
.infobar h2 {
	color:#FFFFFF;
}
.infobar a:not(.btn):not(.buttonlink):not([class*="btn-"]) {
	color: var(--pms-accent-cyan);
}


.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(--pms-text-dark); font-size:32px;
}

.lfm_descr {
	font-family: "Arial"; color:#1c1c1c; font-size:16px;
}

.lfm_descr_bold {
	font-family: "Arial"; color:#000000; font-size:16px;
	font-weight:700;
}