:root {
	/* Standard Znote variable overrides for backward compatibility */
	--primary: #16181e;
	--secondary: #0b0c10;
	--third: #8c919d;
	--border: rgba(255, 255, 255, 0.05);

	/* Redesigned theme color tokens */
	--bg-dark: #07080b;
	--bg-panel: rgba(22, 24, 30, 0.75);
	--bg-sidebar: #101115;
	--bg-header: rgba(16, 17, 21, 0.85);
	--border-color: rgba(255, 255, 255, 0.04);
	--primary-red: #e50914;
	--bright-red: #ff3344;
	--dark-red: #7a060e;
	--text-primary: #e2e4e9;
	--text-secondary: #8c919d;
	--anchor: #ff3344;
	--anchor-hover: #ff5566;

	/* Alerts */
	--bg-danger: rgba(60, 14, 14, 0.4);
	--color-danger: #ffa3a3;
	--border-danger: rgba(255, 51, 68, 0.2);

	--bg-warning: rgba(74, 52, 10, 0.4);
	--color-warning: #ffd27a;
	--border-warning: rgba(255, 170, 0, 0.2);

	--bg-info: rgba(13, 42, 74, 0.4);
	--color-info: #a3cfff;
	--border-info: rgba(0, 150, 255, 0.2);

	--bg-success: rgba(11, 58, 26, 0.4);
	--color-success: #a3ffa3;
	--border-success: rgba(50, 200, 100, 0.2);
}

/* Base Body Styles */
body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-dark);
	/* Deep premium gaming background with ambient red and violet radial glows */
	background-image: 
		radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 100% 100%, rgba(120, 40, 250, 0.08) 0%, transparent 45%);
	background-attachment: fixed;
	color: var(--text-primary);
	margin: 0;
	padding: 0;
	min-height: 100vh;
	overflow-x: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-red);
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', sans-serif;
	color: #fff;
	margin-top: 0;
	letter-spacing: 0.5px;
}
a {
	color: var(--anchor);
	text-decoration: none;
	transition: color 0.2s ease;
}
a:hover {
	color: var(--anchor-hover);
}
li {
	list-style: none;
}

/* Global Transitions */
* {
	box-sizing: border-box;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* DASHBOARD CONTAINER - Outer Frame */
.dashboard-container {
	display: flex;
	min-height: 100vh;
	width: 100%;
}

/* LEFT SIDEBAR NAVIGATION */
.sidebar-left {
	width: 260px;
	background-color: var(--bg-sidebar);
	border-right: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
}

/* Logo Area */
.logo-area {
	height: 80px;
	display: flex;
	align-items: center;
	padding: 0 25px;
	border-bottom: 1px solid var(--border-color);
}
.logo-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}
.server-logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
	animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}
.logo-text {
	font-family: 'Outfit', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(255, 51, 68, 0.3);
}

/* Sidebar Nav */
.sidebar-nav {
	flex: 1;
	padding: 25px 0;
	overflow-y: auto;
}
.sidebar-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.sidebar-nav ul li {
	position: relative;
	margin-bottom: 5px;
}
.sidebar-nav ul li a {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	margin: 0 15px;
	border-radius: 8px;
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}
.sidebar-nav ul li a i {
	margin-right: 15px;
	font-size: 1.15rem;
	width: 24px;
	text-align: center;
	transition: color 0.2s ease;
}
.sidebar-nav ul li a span {
	font-family: 'Inter', sans-serif;
}

/* Sidebar Highlight (Red) */
.sidebar-nav ul li a:hover {
	color: var(--bright-red);
	background-color: rgba(255, 255, 255, 0.02);
}
.sidebar-nav ul li.active a {
	color: var(--bright-red);
	background-color: rgba(229, 9, 20, 0.08);
	font-weight: 600;
}
.sidebar-nav ul li.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	height: 70%;
	width: 4px;
	background-color: var(--bright-red);
	border-radius: 0 4px 4px 0;
	box-shadow: 0 0 12px var(--bright-red);
}

/* Sidebar Footer & Translation */
.sidebar-footer {
	padding: 20px 15px;
	border-top: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	color: #fff;
}
.social-btn.discord {
	background-color: #5865F2;
}
.social-btn.discord:hover {
	background-color: #4752C4;
}
.social-btn.facebook {
	background-color: #1877F2;
}
.social-btn.facebook:hover {
	background-color: #166FE5;
}
.google-translate-container {
	margin-top: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#google_translate_element {
	width: 100%;
}
.goog-te-gadget-simple {
	background-color: #16181e !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 6px !important;
	padding: 6px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
	height: 36px !important;
}
.goog-te-gadget-simple a, .goog-te-menu-value span {
	color: var(--text-secondary) !important;
	font-size: 0.8rem !important;
}
.goog-te-gadget-icon {
	display: none !important;
}

/* RIGHT WORKSPACE WRAPPER */
.workspace-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: transparent;
	margin-left: 260px; /* Offset fixed sidebar */
	min-height: 100vh;
}

/* TOP HEADER BAR */
.workspace-header {
	height: 80px;
	background-color: var(--bg-header);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	position: sticky;
	top: 0;
	z-index: 99;
}

/* Header Search */
.header-search {
	flex: 1;
	max-width: 450px;
}
.search-form {
	position: relative;
	width: 100%;
}
.search-form input[type="text"] {
	width: 100% !important;
	background-color: #15161d !important;
	border: 1px solid rgba(255, 255, 255, 0.06) !important;
	border-radius: 30px !important;
	color: #fff !important;
	padding: 10px 20px 10px 48px !important;
	font-size: 0.88rem !important;
	height: 42px !important;
	transition: all 0.3s ease !important;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.search-form input[type="text"]:focus {
	border-color: rgba(229, 9, 20, 0.4) !important;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 12px rgba(229, 9, 20, 0.15) !important;
	outline: none;
}
.search-form button {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none !important;
	border: none !important;
	color: var(--text-secondary) !important;
	font-size: 1.05rem !important;
	cursor: pointer;
	padding: 0 !important;
	box-shadow: none !important;
	height: auto !important;
	width: auto !important;
}
.search-form button:hover {
	color: var(--bright-red) !important;
	transform: none !important;
	box-shadow: none !important;
}

/* Header Right Area */
.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Bell Dropdown System */
.bell-container {
	position: relative;
}
.header-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background-color: #15161d;
	color: var(--text-secondary);
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.06);
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.header-icon-btn:hover {
	color: var(--bright-red);
	border-color: rgba(229, 9, 20, 0.3);
}
.pulse-indicator {
	position: absolute;
	top: 11px;
	right: 12px;
	width: 8px;
	height: 8px;
	background-color: var(--bright-red);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--bright-red);
	animation: pulseBtn 2s infinite;
}
@keyframes pulseBtn {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(229, 9, 20, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.bell-dropdown {
	position: absolute;
	top: 55px;
	right: 0;
	width: 270px;
	background-color: #101115;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	z-index: 999;
	display: none;
	animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bell-container:hover .bell-dropdown {
	display: block;
}
@keyframes dropdownFade {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.bell-dropdown h4 {
	margin: 0 0 12px 0;
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.status-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 0.85rem;
	color: var(--text-secondary);
}
.status-row span:last-child {
	color: #fff;
	font-weight: 500;
}
.status-online {
	color: #4CAF50 !important;
}
.status-online i {
	font-size: 8px;
	margin-right: 4px;
	vertical-align: middle;
}
.status-offline {
	color: #ff4c4c !important;
}
.status-offline i {
	font-size: 8px;
	margin-right: 4px;
	vertical-align: middle;
}
.dropdown-link {
	display: block;
	text-align: center;
	margin-top: 15px;
	font-size: 0.82rem;
	color: var(--bright-red);
	font-weight: 600;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 12px;
}

/* User Profile Widget */
.user-profile-widget {
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: #15161d;
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 6px 18px 6px 8px;
	border-radius: 30px;
	cursor: pointer;
	position: relative;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.user-profile-widget:hover {
	border-color: rgba(255, 255, 255, 0.12);
	background-color: #1b1d26;
}
.user-avatar-small {
	width: 32px;
	height: 32px;
	background-color: rgba(229, 9, 20, 0.1);
	border: 1px solid rgba(229, 9, 20, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bright-red);
	font-size: 1.15rem;
	overflow: hidden;
}
.user-avatar-small.placeholder-avatar {
	background-color: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.05);
	color: var(--text-secondary);
}
.user-meta-details {
	display: flex;
	flex-direction: column;
}
.user-name {
	color: #fff;
	font-weight: 600;
	font-size: 0.85rem;
	line-height: 1.2;
}
.user-subtext {
	color: var(--text-secondary);
	font-size: 0.72rem;
	line-height: 1.2;
	margin-top: 1px;
}
.profile-hover-menu {
	position: absolute;
	top: 44px; /* Reduced top gap (widget is 46px high, so this overlaps by 2px) */
	right: 0;
	width: 170px;
	background-color: #101115;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 8px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	z-index: 999;
	display: none;
	animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Hover bridge to prevent losing hover when cursor moves from widget down to menu */
.profile-hover-menu::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
	background-color: transparent;
}
.user-profile-widget:hover .profile-hover-menu {
	display: block;
}
.profile-hover-menu a {
	display: flex;
	align-items: center;
	padding: 10px 18px;
	color: var(--text-secondary);
	font-size: 0.85rem;
	font-weight: 500;
}
.profile-hover-menu a i {
	margin-right: 12px;
	font-size: 1.05rem;
	width: 20px;
	text-align: center;
}
.profile-hover-menu a:hover {
	color: var(--bright-red);
	background-color: rgba(255, 255, 255, 0.02);
}

/* WORKSPACE BODY - Layout Grid */
.workspace-body {
	flex: 1;
	padding: 40px;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}

.content-columns-wrapper {
	display: flex;
	gap: 35px;
	align-items: flex-start;
}

/* Middle content area */
.center-content-column {
	flex: 1;
	min-width: 0; /* Prevents flexbox text overflow issues */
}

/* Right sidebar area */
.rightPane {
	width: 330px !important;
	flex-shrink: 0;
	float: none !important;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* Important Banner Alert */
.important-message-banner {
	background-color: rgba(229, 9, 20, 0.08);
	border: 1px solid rgba(229, 9, 20, 0.25);
	padding: 20px;
	margin-bottom: 30px;
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(229, 9, 20, 0.15);
}
.important-message-banner h3 {
	color: var(--bright-red);
	margin: 0;
	font-weight: 700;
	font-size: 1.15rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.admin-banner-submit {
	margin-top: 12px;
	background-color: var(--primary-red) !important;
	height: 38px !important;
	padding: 0 20px !important;
}

/* PAGE CONTAINER (Centered glassmorphism panel) */
.page-container {
	background-color: var(--bg-panel);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 35px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	margin-bottom: 30px;
}


/* Page Headers */
.page-container h1 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.85rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 30px;
	border-bottom: 2px solid rgba(229, 9, 20, 0.15);
	padding-bottom: 15px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.page-container h1::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 90px;
	height: 2px;
	background-color: var(--bright-red);
	box-shadow: 0 0 10px var(--bright-red);
}

/* TABLES STYLING (Universal Znote override) */
table {
	width: 100% !important;
	border-collapse: collapse !important;
	margin: 25px 0 !important;
	background-color: rgba(21, 22, 29, 0.45) !important;
	border: 1px solid rgba(255, 255, 255, 0.05) !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
th {
	background-color: rgba(229, 9, 20, 0.04) !important;
	color: var(--bright-red) !important;
	font-weight: 700 !important;
	font-family: 'Outfit', sans-serif;
	text-transform: uppercase !important;
	font-size: 0.85rem !important;
	letter-spacing: 1px !important;
	padding: 14px 18px !important;
	text-align: left !important;
	border-bottom: 2px solid rgba(229, 9, 20, 0.25) !important;
}
td {
	padding: 14px 18px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
	color: #cdd0d6 !important;
	font-size: 0.9rem !important;
}
tr.yellow, tr.header, thead tr {
	background-color: rgba(229, 9, 20, 0.04) !important;
}
tr.yellow td, tr.header th {
	color: var(--bright-red) !important;
	font-weight: 700 !important;
	font-family: 'Outfit', sans-serif;
	text-transform: uppercase !important;
}
tr:nth-child(even) {
	background-color: rgba(255, 255, 255, 0.015) !important;
}
tr:nth-child(odd) {
	background-color: transparent !important;
}
tr:hover {
	background-color: rgba(255, 255, 255, 0.03) !important;
}
tr.special:hover {
	cursor: pointer;
}

/* WIDGET CARDS / ASIDE WIDGETS */
.well.widget {
	background-color: var(--bg-panel);
	border: 1px solid var(--border-color);
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}
.well.widget::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--bright-red), transparent);
}
.well.widget .header {
	font-family: 'Outfit', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 12px;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: none !important;
}

/* Form Controls & Inputs */
input[type="text"], input[type="password"], input[type="email"], select, textarea {
	background-color: #14151b !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 6px !important;
	color: #fff !important;
	padding: 10px 16px !important;
	font-size: 0.9rem !important;
	height: 42px !important;
	transition: all 0.25s ease !important;
	width: 100%;
	box-sizing: border-box;
}
textarea {
	height: auto !important;
	min-height: 110px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
	border-color: var(--bright-red) !important;
	box-shadow: 0 0 10px rgba(229, 9, 20, 0.2) !important;
	outline: none;
}
.page-container form {
	max-width: 600px;
	margin: 0 auto;
}

/* Buttons */
input[type="submit"], button, .button {
	background: linear-gradient(135deg, var(--bright-red) 0%, var(--dark-red) 100%) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 0 25px !important;
	font-weight: 700 !important;
	font-family: 'Outfit', sans-serif;
	text-transform: uppercase !important;
	letter-spacing: 0.8px !important;
	height: 42px !important;
	cursor: pointer !important;
	box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
input[type="submit"]:hover, button:hover, .button:hover {
	transform: translateY(-1.5px);
	box-shadow: 0 6px 18px rgba(229, 9, 20, 0.45) !important;
	background: linear-gradient(135deg, #ff4c5b 0%, #a30b14 100%) !important;
}

/* Centered content columns helper */
.center-content-column form, .center-content-column table {
	margin-left: auto;
	margin-right: auto;
}

/* Sidebar players online list styling */
.sidebar-online-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-online-list li {
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	padding-bottom: 12px;
}
.sidebar-online-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.online-player-item {
	display: flex;
	align-items: center;
	text-decoration: none;
	width: 100%;
}
.avatar-container {
	position: relative;
	width: 44px;
	height: 44px;
	background-color: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.player-outfit-avatar {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-top: -8px;
}
.default-avatar {
	color: var(--bright-red);
	font-size: 1.25rem;
}
.online-indicator {
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 10px;
	height: 10px;
	background-color: #4CAF50;
	border: 2px solid #16181e;
	border-radius: 50%;
	box-shadow: 0 0 6px #4CAF50;
}
.player-info {
	margin-left: 14px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.player-name {
	font-weight: 700;
	color: #fff;
	font-size: 0.92rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}
.player-meta {
	font-size: 0.76rem;
	color: var(--text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 2px;
}
.view-all-online {
	text-align: center;
	margin-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 14px;
}
.view-all-online a {
	color: var(--bright-red);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.nobody-online {
	text-align: center;
	color: var(--text-secondary);
	font-size: 0.88rem;
	padding: 15px 0;
}

/* ZNOTE NEWS FEED DESIGN (Redesigned parchment overlay) */
.postHolder {
	margin-bottom: 30px;
}
.postHolder .well {
	background-color: var(--bg-panel);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.postHolder .header {
	font-family: 'Outfit', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	border-bottom: 2px solid rgba(229, 9, 20, 0.15);
	padding-bottom: 12px;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
	background: none !important;
}
.postHolder .body {
	color: var(--text-primary);
	font-size: 0.95rem;
	line-height: 1.6;
	padding: 0;
}

/* Alert Boxes Override */
.alert-box {
	font-size: 0.9rem;
	border-radius: 8px;
	padding: 15px 20px !important;
	margin-bottom: 20px;
	text-align: left;
	border-width: 1px;
	border-style: solid;
}
.alert-danger {
	background-color: var(--bg-danger);
	color: var(--color-danger);
	border-color: var(--border-danger);
}
.alert-warning {
	background-color: var(--bg-warning);
	color: var(--color-warning);
	border-color: var(--border-warning);
}
.alert-info {
	background-color: var(--bg-info);
	color: var(--color-info);
	border-color: var(--border-info);
}
.alert-success {
	background-color: var(--bg-success);
	color: var(--color-success);
	border-color: var(--border-success);
}

/* WORKSPACE FOOTER */
.workspace-footer {
	height: 60px;
	border-top: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	color: var(--text-secondary);
	font-size: 0.8rem;
	background-color: rgba(16, 17, 21, 0.3);
}
.workspace-footer p {
	margin: 0;
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media screen and (max-width: 1200px) {
	.content-columns-wrapper {
		flex-direction: column;
	}
	.rightPane {
		width: 100% !important;
	}
}

/* Mobile Toggles & Overlay Defaults (Desktop: Hidden) */
.mobile-nav-toggle {
	display: none;
}
.sidebar-close-btn {
	display: none;
}
.sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.sidebar-open .sidebar-overlay {
	opacity: 1;
	visibility: visible;
}
body.sidebar-open {
	overflow: hidden;
}

@media screen and (max-width: 900px) {
	.sidebar-left {
		display: flex !important; /* Override layout and any display: none */
		position: fixed;
		top: 0;
		bottom: 0;
		left: -260px; /* Hide offscreen to the left */
		width: 260px;
		z-index: 1000; /* Over overlay and header */
		transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 4px 0 24px rgba(0, 0, 0, 0.6);
	}
	body.sidebar-open .sidebar-left {
		left: 0;
	}
	
	.sidebar-close-btn {
		display: flex !important;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		color: var(--text-secondary);
		font-size: 1.4rem;
		cursor: pointer;
		margin-left: auto;
		padding: 5px;
	}
	.sidebar-close-btn:hover {
		color: var(--bright-red);
	}
	
	.mobile-nav-toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		color: #fff;
		font-size: 1.5rem;
		cursor: pointer;
		padding: 10px;
		margin-right: 15px;
		transition: color 0.2s ease;
	}
	.mobile-nav-toggle:hover {
		color: var(--bright-red);
	}

	.workspace-wrapper {
		margin-left: 0;
	}
	.workspace-header {
		padding: 0 20px;
	}
	.workspace-body {
		padding: 20px;
	}
}

@media screen and (max-width: 600px) {
	/* Optimize header layout to prevent horizontal overflow on small phones */
	.user-meta-details {
		display: none;
	}
	.user-profile-widget {
		padding: 6px;
		border-radius: 50%;
		width: 44px;
		height: 44px;
		justify-content: center;
	}
	.user-profile-widget:hover {
		border-radius: 50%;
	}
	.header-right {
		gap: 12px;
	}
	.header-search {
		max-width: 170px;
	}
	.search-form input[type="text"] {
		padding: 10px 10px 10px 35px !important;
		font-size: 0.82rem !important;
	}
	.search-form button {
		left: 12px;
	}
}

/* Centered Login Page Container */
.login-page-container {
	max-width: 500px !important;
	margin: 50px auto !important;
}
.login-page-container h1 {
	font-family: 'Outfit', sans-serif;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.login-page-links a {
	color: var(--bright-red);
	font-weight: 600;
	text-decoration: underline;
}
.login-page-links a:hover {
	color: var(--anchor-hover);
}
