:root {
	--bg-color: #FDFBF7; /* Soft Cream */
	--text-color: #1A1A1A;
	--primary: #005A3C; /* Emerald Green */
	--secondary: #003B26; /* Dark Forest Green */
	--accent: #D4AF37; /* Luxury Gold */
}

body.dark-mode-c07be935 {
	--bg-color: #121212;
	--text-color: #FFFFFF;
	--primary: #008055;
	--secondary: #002216;
	--accent: #E5C158;
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.theme-toggle-btn-c07be935 {
	background: transparent;
	border: 2px solid var(--accent);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s ease;
}

.theme-toggle-btn-c07be935:hover {
	background: var(--accent);
}

.theme-toggle-btn-c07be935 .icon-dark {
	display: none;
}

body.dark-mode-c07be935 .theme-toggle-btn-c07be935 .icon-light {
	display: none;
}

body.dark-mode-c07be935 .theme-toggle-btn-c07be935 .icon-dark {
	display: block;
}
