/*

Theme Name: Bunny 2026

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: #333333;
	background: #29c7f7;
	background: linear-gradient(to bottom, #12b7ec 0%, #4fd0f7 30%, #a9e6fb 70%, #e6f8fe 100%);
	background-attachment: fixed;
}


/* Main page structure */

.lfm_outerdiv {
	display: flex;
	width: 100%;
	align-items: stretch;
}
.main {
	width: 100%;
}



/* Site logo styles */

.lfm_menu_logo {
	max-height: 35px;
	margin: 0.5rem 1.2rem 0.3rem 1.2rem;
}


/* Styles for the top bar */

.lfm_topbar {
	background: rgba(255,255,255,0.65);
	color: #333333;
	margin: 12px 15px;
	border-radius: 10px;
	border: 2px solid #ffffff;
	box-shadow: 0 2px 6px rgba(23,182,232,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(to bottom, #ffd21a 0%, #ffc107 100%);
	box-shadow: 2px 0 8px rgba(0,0,0,0.15);
}

/* 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: #e8380d;
	padding-right: 10px;
}
.lfm_slidebar_toggleswitch:hover {
	color: #ffc107;
}

.lfm_slidebar_mainmenu {
	list-style: none;
	padding: 12px 10px;
	overflow: auto;
}

.lfm_slidebar_mainmenu li {
	margin-bottom: 8px;
}


/* This sets the style of the slidebar menu items - bright Bunny Hits buttons */
.lfm_slidebar_mainmenu li > a {
	color: #ffe000;
	background: linear-gradient(to bottom, #ff7038 0%, #f04a12 50%, #e0380a 100%);
	border: 2px solid #ffffff;
	border-radius: 8px;
	text-decoration: none;
	display: block;
	margin: 0px;
	padding: 0.5rem 0.9rem 0.5rem 0.9rem;
	font-size: 15px;
	position: relative;
	font-weight: 700;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.45);
	box-shadow: 0 2px 4px rgba(0,0,0,0.25);
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

/* 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: #ffffff;
	background: linear-gradient(to bottom, #ff8a4d 0%, #ff5a24 50%, #f0470f 100%);
	box-shadow: 0 3px 7px rgba(0,0,0,0.35);
}



/* 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-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:#12b7ec;
	background:linear-gradient(to bottom, #29c7f7 0%, #12b7ec 100%);
}
.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;
}


/* =====================================================================
   BUNNY HITS CUSTOMIZATIONS
   Brand colors: sky blue (#12b7ec), grass yellow (#ffd21a),
   carrot orange-red (#f0470f), leaf green (#2e8b30)
   ===================================================================== */

/* Custom header banner (top of the script) */
.bunny-header-banner {
	width: 100%;
	text-align: center;
	line-height: 0;
}
.bunny-header-banner img {
	display: inline-block;
	width: 100%;
	max-width: 960px;
	height: auto;
}

/* Custom footer banner (bottom of the script) */
.bunny-footer-banner {
	width: 100%;
	text-align: center;
	line-height: 0;
	margin-top: 15px;
}
.bunny-footer-banner img {
	display: inline-block;
	width: 100%;
	max-width: 960px;
	height: auto;
}

/* Keep the flex row transparent so the sky gradient shows through */
.lfm_outerdiv,
.main {
	background: transparent;
}

/* Sidebar "Bunny Hits" text logo (replaces the old logo image) */
.lfm_menu_logo_text {
	display: block;
	text-align: center;
	text-decoration: none;
	font-family: 'Comic Sans MS', 'Baloo 2', 'Segoe UI', cursive;
	font-weight: 800;
	font-size: 26px;
	line-height: 1.1;
	margin: 12px 12px 6px 12px;
	padding: 10px 6px;
	background: linear-gradient(to bottom, #29c7f7 0%, #7fd8f5 100%);
	border: 2px solid #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.lfm_menu_logo_text:hover {
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}
.lfm_menu_logo_text .word-bunny {
	color: #ffe000;
	text-shadow: 1px 1px 1px #b58900, -1px -1px 0 #ffffff;
}
.lfm_menu_logo_text .word-hits {
	color: #f0470f;
	text-shadow: 1px 1px 1px #7a1f00, -1px -1px 0 #ffffff;
}

/* White content card with a soft sky-blue glow */
.content {
	background: #ffffff;
	border: 3px solid #bfeafb;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(23,182,232,0.35);
	margin: 0 15px 15px 15px;
	padding: 20px 15px;
	min-height: 420px;
}

/* Typography - green body headings, carrot accents */
.content h1, .content h2, .content h3,
.content h4, .content h5, .content h6,
.lfm_title {
	color: #2e8b30;
}
/* Plain text links in the content area (exclude buttons) */
.content a:not(.btn):not(.buttonlink) {
	color: #e8380d;
}
.content a:not(.btn):not(.buttonlink):hover {
	color: #2e8b30;
}
/* Keep Bootstrap button links readable (white text) */
.content a.btn,
.content a.btn:hover,
.content a.buttonlink,
.content a.buttonlink:hover {
	color: #ffffff;
}

/* Buttons - keep Bootstrap classes, tune brand colors */
.btn-success {
	background-color: #2e8b30;
	border-color: #24701f;
}
.btn-success:hover {
	background-color: #37a53a;
	border-color: #2e8b30;
}
.btn-primary {
	background-color: #12b7ec;
	border-color: #0f97c4;
}
.btn-primary:hover {
	background-color: #29c7f7;
	border-color: #12b7ec;
}

.buttonlink {
	background-color: #f0470f;
	border: 1px solid #b8300a;
}
.buttonlink:hover {
	background-color: #ff6a2b;
}

/* Footer (only shows if the theme footer is enabled) */
.lfm_footer {
	background-color: #0f97c4;
}