/* ==========================================================================
   MYKORANK BACK OFFICE - STYLE.CSS
   Style centralisé pour tous les templates du back office
   Avec système Dark Mode complet
   ========================================================================== */

/* ==========================================================================
   1. RESET & VARIABLES CSS
   ========================================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* === PALETTE DE COULEURS DE MARQUE (constantes) === */
	--primary: #1f2a4e;
	--secondary: #f8c800;
	--tertiary: #40B4B0;
	--error: #e74c3c;
	--success: #27ae60;
	--warning: #f39c12;
	
	/* === LIGHT THEME (par défaut) === */
	--bg-primary: #f5f7fa;
	--bg-secondary: #ffffff;
	--bg-tertiary: #e8ecf0;
	--bg-hover: #f0f2f5;
	--bg-card: #ffffff;
	
	--text-primary: #333333;
	--text-secondary: #888888;
	--text-muted: #aaaaaa;
	--text-inverse: #ffffff;
	
	--border-color: #e0e4e8;
	--border-hover: #d0d4d8;
	
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
	
	--overlay: rgba(0, 0, 0, 0.5);
	
	/* === DIMENSIONS CONSTANTES === */
	--sidebar-width: 260px;
	--header-height: 70px;
	--border-radius: 12px;
	--border-radius-lg: 16px;
}

/* === DARK MODE - Redéfinition des variables === */
body.dark-mode {
	--bg-primary: #0f1419;
	--bg-secondary: #1a1f28;
	--bg-tertiary: #252b36;
	--bg-hover: #2d3340;
	--bg-card: #1a1f28;
	
	--text-primary: #e4e6eb;
	--text-secondary: #a0a3a8;
	--text-muted: #6e7179;
	--text-inverse: #0f1419;
	
	--border-color: #2d3340;
	--border-hover: #3d4350;
	
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
	
	--overlay: rgba(0, 0, 0, 0.7);
}

/* === TRANSITIONS FLUIDES === */
body, 
.header, 
.sidebar, 
.main-content,
.card,
.user-dropdown,
.service-status,
.sidebar-link,
.dropdown-item,
.plan-badge,
.btn,
.content-placeholder,
.user-account {
	transition: background-color 0.3s ease, 
				color 0.3s ease, 
				border-color 0.3s ease,
				box-shadow 0.3s ease;
}

body {
	font-family: 'Quicksand', sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
}

/* === AUTH PAGES (login, signup) === */
body.bg-auth {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	min-height: 100vh;
}

.auth-wrapper {
	display: flex;
	min-height: 100vh;
}

/* Left side - Cover image */
.auth-left {
	flex: 1;
	background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.auth-left-content {
	text-align: center;
	color: white;
	z-index: 2;
	padding: 40px;
}

.auth-left-logo {
	max-width: 200px;
	margin-bottom: 30px;
	filter: brightness(0) invert(1);
}

.auth-left-title {
	font-family: 'Baloo 2', cursive;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}

.auth-left-subtitle {
	font-size: 16px;
	opacity: 0.9;
	max-width: 300px;
	margin: 0 auto;
}

/* Animated circles */
.auth-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: float 6s ease-in-out infinite;
}

.auth-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.auth-circle-2 {
	width: 200px;
	height: 200px;
	bottom: -50px;
	right: -50px;
	animation-delay: 2s;
}

.auth-circle-3 {
	width: 150px;
	height: 150px;
	top: 50%;
	left: 10%;
	animation-delay: 4s;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}

/* Rocket animation */
.auth-rocket {
	font-size: 48px;
	animation: rocket-float 3s ease-in-out infinite;
}

@keyframes rocket-float {
	0%, 100% { transform: translateY(0) rotate(-45deg); }
	50% { transform: translateY(-15px) rotate(-45deg); }
}

/* Right side - Form */
.auth-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.auth-card {
	width: 100%;
	max-width: 450px;
}

.auth-header {
	text-align: center;
	margin-bottom: 40px;
}

.auth-logo {
	max-width: 180px;
	margin-bottom: 24px;
}

.auth-title {
	font-family: 'Baloo 2', cursive;
	font-size: 32px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.auth-subtitle {
	color: var(--text-secondary);
	font-size: 15px;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-label {
	font-weight: 600;
	color: var(--primary);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-input {
	padding: 18px 22px;
	border: 2px solid var(--border-color);
	border-radius: 16px;
	font-family: 'Quicksand', sans-serif;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
	color: var(--text-primary);
}

.form-input:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 4px rgba(248, 200, 0, 0.15);
}

.form-input::placeholder {
	color: var(--text-muted);
}

.auth-error {
	background: rgba(231, 76, 60, 0.1);
	color: var(--error);
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 14px;
	text-align: center;
	border: 1px solid rgba(231, 76, 60, 0.2);
}

.auth-btn {
	width: 100%;
	padding: 18px 24px;
	font-size: 16px;
	font-family: 'Baloo 2', cursive;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	justify-content: center;
	border-radius: 16px;
	margin-top: 8px;
	position: relative;
	overflow: hidden;
}

.auth-btn .btn-rocket {
	margin-left: 10px;
	transition: transform 0.3s ease;
}

.auth-btn:hover .btn-rocket {
	transform: translateX(5px) translateY(-5px);
}

.auth-links {
	margin-top: 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.auth-link {
	color: var(--tertiary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.auth-link:hover {
	color: var(--primary);
}

.auth-link-forgot {
	color: var(--text-secondary);
}

.auth-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 8px 0;
}

.auth-divider::before,
.auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--border-color);
}

.auth-divider span {
	color: var(--text-muted);
	font-size: 13px;
}

/* Success messages */
.auth-success {
	background: rgba(39, 174, 96, 0.1);
	border: 2px solid var(--success);
	color: var(--text-primary);
	padding: 30px;
	border-radius: 16px;
	text-align: center;
	margin-bottom: 24px;
}

.auth-success i {
	font-size: 56px;
	color: var(--success);
	margin-bottom: 20px;
	display: block;
}

.auth-success p {
	margin-bottom: 8px;
	font-size: 15px;
}

.auth-success-hint {
	font-size: 13px;
	color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
	.auth-left {
		display: none;
	}

	.auth-right {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	.auth-card {
		padding: 0 10px;
	}

	.form-input {
		padding: 16px 18px;
	}

	.auth-title {
		font-size: 26px;
	}
}

/* ==========================================================================
   2. HEADER STYLES
   ========================================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: var(--bg-secondary);
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	z-index: 1000;
	animation: slideDown 0.6s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.header-left {
	display: flex;
	align-items: center;
}

.logo {
	height: 60px;
	width: auto;
}

/* Logo en dark mode - filtre pour inverser les couleurs sombres */
body.dark-mode .logo {
	content: url('/static/images/logo-mykorank-blanc.png');
}

.header-right {
	display: flex;
	align-items: center;
}

/* ==========================================================================
   HEADER CENTER - SÉLECTEUR DE PROJET
   À ajouter après la section HEADER STYLES
   ========================================================================== */

.header-center {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 24px;
}

.project-selector {
	min-width: 280px;
	max-width: 400px;
	padding: 10px 40px 10px 16px;
	font-family: 'Quicksand', sans-serif;
	font-size: 14px;
	font-weight: 600;
	background: var(--primary);
	color: var(--text-inverse);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
}

.project-selector:hover {
	opacity: 0.9;
}

.project-selector:focus {
	outline: none;
}

/* Dark mode : la flèche reste blanche, le fond reste --primary */
body.dark-mode .project-selector {
	background-color: var(--primary);
}


/* ==========================================================================
   DARK MODE TOGGLE
   ========================================================================== */

.theme-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 3rem;
	cursor: pointer;
	user-select: none;
}

.toggle-switch {
	position: relative;
	width: 60px;
	height: 32px;
	background: var(--text-secondary);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.toggle-switch::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 24px;
	height: 24px;
	background: var(--bg-secondary);
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active {
	background: var(--secondary);
}

.toggle-switch.active::before {
	transform: translateX(28px);
	background: var(--primary);
}

.toggle-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

body.dark-mode .toggle-label {color: var(--secondary);}

.theme-toggle:hover .toggle-label {
	color: var(--primary);
}

.theme-toggle:hover .toggle-switch::before {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SERVICE STATUS
   ========================================================================== */

.service-status {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;text-transform: uppercase;
	color: var(--primary);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

body.dark-mode .service-status span {
	color: #1f2a4e
}

.status-ok {
	background:#d1fae5;
}

.status-maintenance {
	background:#fed7aa;
}

.status-error {
	background:#fecaca;
}

.status-icon {
	font-size: 12px;
}

.status-ok .status-icon {
	color: var(--secondary);
}

.status-maintenance .status-icon {
	color: var(--text-secondary);
}

.status-error .status-icon {
	color: var(--error);
}

/* ==========================================================================
   PLAN BADGE
   ========================================================================== */

.plan-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: linear-gradient(135deg, var(--secondary) 0%, #ffd93d 100%);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(248, 200, 0, 0.3);
	transition: all 0.3s ease;
}

.plan-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(248, 200, 0, 0.4);
}

.plan-label {
	font-size: 11px;
	opacity: 0.8;
}

/* ==========================================================================
   QUOTA BADGES
   À ajouter après la section PLAN BADGE
   ========================================================================== */

.quota-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: none;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quota-badge i {
	font-size: 14px;
	opacity: 0.9;
}

.quota-badge span {
	font-size: 12px;
	white-space: nowrap;
}

/* Variante pour affichage quota limite atteinte */
.quota-badge.quota-full {
	background: linear-gradient(135deg, var(--error) 0%, #c0392b 100%);
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.quota-badge.quota-full:hover {
	box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

/* Variante pour affichage quota warning (proche de la limite) */
.quota-badge.quota-warning {
	background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
	box-shadow: 0 4px 12px rgba(243, 156, 18, 0.25);
}

.quota-badge.quota-warning:hover {
	box-shadow: 0 6px 16px rgba(243, 156, 18, 0.35);
}

/* ==========================================================================
   USER ACCOUNT & DROPDOWN
   ========================================================================== */

.user-account {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.user-account:hover {
	background: var(--bg-hover);
}

.user-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
}

.user-avatar {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Baloo 2', cursive;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-inverse);
	transition: all 0.3s ease;
}

body.dark-mode .user-avatar {color: white}

.user-account:hover .user-avatar {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(31, 42, 78, 0.3);
}

/* Dropdown Menu */
.user-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	min-width: 200px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1001;
}

.user-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 1px solid var(--border-color);
}

body.dark-mode .dropdown-item:hover {color: white}
body.dark-mode .dropdown-item.logout:hover {color: red}

.dropdown-item:last-child {
	border-bottom: none;
	border-radius: 0 0 12px 12px;
}

.dropdown-item:first-child {
	border-radius: 12px 12px 0 0;
}

.dropdown-item:hover {
	background: var(--bg-hover);
	color: var(--primary);
	padding-left: 24px;
}

.dropdown-item i {
	width: 20px;
	text-align: center;
	color: var(--tertiary);
}

.dropdown-item.logout {
	color: var(--error);
}

.dropdown-item.logout i {
	color: var(--error);
}

/* ==========================================================================
   3. SIDEBAR STYLES
   ========================================================================== */

.sidebar {
	position: fixed;
	top: var(--header-height);
	left: 0;
	width: var(--sidebar-width);
	height: calc(100vh - var(--header-height));
	background: var(--bg-secondary);
	box-shadow: var(--shadow-sm);
	border-right: 1px solid var(--border-color);
	padding: 24px 0;
	overflow-y: auto;
	z-index: 999;
	animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sidebar-nav {
	list-style: none;
}

.sidebar-item {
	margin: 0;
}

.sidebar-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 24px;
	color: var(--text-primary);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

body.dark-mode .sidebar-link.active span, body.dark-mode .sidebar-link:hover span, body.dark-mode .sidebar-link:hover i {
	color: var(--secondary);
}

.sidebar-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 0;
	background: var(--secondary);
	border-radius: 0 4px 4px 0;
	transition: height 0.3s ease;
}

.sidebar-link:hover {
	background: var(--bg-hover);
	color: var(--primary);
	padding-left: 32px;
}

.sidebar-link:hover::before {
	height: 50%;
}

.sidebar-link.active {
	background: var(--bg-tertiary);
	color: var(--primary);
	font-weight: 700;
}

.sidebar-link.active::before {
	height: 60%;
}

.sidebar-link.active i {
	color: var(--secondary);
}

.sidebar-link i {
	width: 20px;
	text-align: center;
	font-size: 18px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.sidebar-link:hover i {
	color: var(--tertiary);
	transform: scale(1.1);
}

/* ==========================================================================
   4. MAIN CONTENT STYLES
   ========================================================================== */

.main-content {
	margin-top: var(--header-height);
	margin-left: var(--sidebar-width);
	padding: 32px;
	min-height: calc(100vh - var(--header-height));
	animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.content-wrapper {
	width: 100%;
}

/* Page Title */
.page-title {
	font-family: 'Baloo 2', cursive;
	font-size: 32px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 24px;
}

body.dark-mode .page-title {
	color: var(--secondary)
}

/* Empty state placeholder */
.content-placeholder {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 60px;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.placeholder-icon {
	font-size: 80px;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.placeholder-text {
	font-size: 18px;
	color: var(--text-secondary);
	font-weight: 600;
}

/* ==========================================================================
   5. UTILITY CLASSES
   ========================================================================== */

/* Cards */
.card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	border-color: var(--border-hover);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: 'Quicksand', sans-serif;
	font-size: 14px;
	font-weight: 700;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary {
	background: var(--secondary);
	color: var(--primary);
}

.btn-primary:hover {
	background: #ffd93d;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(248, 200, 0, 0.3);
}

.btn-secondary {
	background: var(--tertiary);
	color: var(--text-inverse);
}

.btn-secondary:hover {
	background: #5ac4c0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(64, 180, 176, 0.3);
}

/* Section Title */
.section-title {
	font-family: 'Baloo 2', cursive;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 16px;
}

/* ==========================================================================
   6. RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.sidebar.mobile-active {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 0;
	}

	.theme-toggle {
		margin-left: 2rem;
	}
	
	.header-center {
		display: none; /* Masqué sur tablette/mobile */
	}
	
	.quota-badge span {
		display: none; /* Affiche seulement l'icône */
	}
	
	.quota-badge {
		padding: 8px 12px;
		min-width: 40px;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 0 16px;
	}

	.header-right {
		gap: 16px;
	}

	.user-name {
		display: none;
	}

	.plan-label {
		display: none;
	}

	.service-status span:not(.status-icon) {
		display: none;
	}

	.main-content {
		padding: 20px;
	}

	.theme-toggle {
		margin-left: 1rem;
	}

	.toggle-label {
		display: none;
	}
	
	.quota-badge {
		padding: 6px 10px;
	}
	
	.quota-badge i {
		font-size: 12px;
	}
}

/* ==========================================================================
   7. SCROLLBAR PERSONNALISÉE (DARK MODE AWARE)
   ========================================================================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--border-color);
	border-radius: 6px;
	border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-secondary);
}

/* Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--border-color) var(--bg-primary);
}