:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gold: #ecae29;

	--color-error: #ff4d4f;
	--color-success: #52c41a;
	--color-warning: #faad14;
	--color-info: #1890ff;

	--color-gold-transparent: #ecae297a;
	--color-gold-light-bg: #ecae2918;
	--color-gold-hover-bg: #ecae2950;
	--color-gold-hover-row: #ecae293b;

	--color-odd-row: #181818;
	--color-even-row: #232323;

	--color-dark-gray: #181818;
	--color-mid-gray: #232323;
	--color-input-bg: #464646;
	--color-border: #ecae29;

	--color-light-text: #bbbbbb;
	--color-dark-text: #888888;
}

html,
body {
	background-color: var(--color-black) !important;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main-wrapper {
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.centered-content {
	padding: 20px;
	border: var(--color-border) 2px solid;
	border-radius: 15px;
	width: 75%;
	background-color: var(--color-dark-gray);
	margin-top: 20px;
	margin-bottom: 20px;
	color: var(--color-gold);
}

/* Logo top left */
.logo-top-left {
	position: fixed;
	top: 20px;
	left: 30px;
	z-index: 1000;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.logo-top-left img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Profile button top right */
.profile-top-right {
	position: fixed;
	top: 20px;
	right: 30px;
	z-index: 1000;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-btn {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #eee;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 0;
}

.profile-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.dropdown {
	width: 100%;
	height: 100%;
}

/* Footer text */
.footer-text {
	position: static;
	margin-top: auto;
	width: 100%;
	text-align: center;
	color: var(--color-dark-text);
	font-size: 0.95rem;
	padding-bottom: 16px;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
	width: 12px;
	background: var(--color-dark-gray);
}

::-webkit-scrollbar-thumb {
	background: var(--color-gold-transparent);
	border-radius: 8px;
	border: 2px solid var(--color-dark-gray);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-gold-hover-bg);
}

::-webkit-scrollbar-corner {
	background: var(--color-dark-gray);
}

/* Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--color-gold-transparent) var(--color-dark-gray);
}

.profile-btn {
	background-color: var(--color-mid-gray);
}

.dropdown-toggle::after {
	color: var(--color-gold);
}

.dropdown-menu.show {
	background-color: var(--color-mid-gray);
	border: 1px solid var(--color-border);
	color: var(--color-gold);
}

.dropdown-item {
	color: var(--color-gold) !important;
}

.dropdown-item:hover {
	background-color: var(--color-gold-hover-bg) !important;
}

.dropdown-divider {
	border-top: 1px solid var(--color-border) !important;
}
