:root {
	--primary-color: #2E7D32;
	--primary-dark: #1B5E20;
	--secondary-color: #4E342E;
	--accent-color: #A6CE39;
	--light-bg: #f8f9fa;
}

body {
	font-family: 'Instrument Sans', sans-serif;
	background-color: var(--light-bg);
	color: #333;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.navbar {
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	background-color: #fff;
}

.navbar-brand {
	font-weight: 700;
	color: var(--primary-color) !important;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-link {
	font-weight: 500;
	color: #555;
}

.nav-link:hover, .nav-link.active {
	color: var(--primary-color);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
}

.btn-outline-primary {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	color: white;
}

main {
	flex: 1;
	padding-top: 2rem;
	padding-bottom: 3rem;
}

footer {
	background-color: #263238;
	color: #eceff1;
	padding: 3rem 0;
	margin-top: auto;
}

footer a {
	color: #b0bec5;
	text-decoration: none;
}

footer a:hover {
	color: white !important;
}

/* Notification Bell in Navbar */
.notification-bell-container {
	position: relative;
	margin-right: 15px;
}

.notification-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	font-size: 0.7rem;
	padding: 2px 5px;
	border-radius: 50%;
}

.dropdown-menu-notifications {
	width: 320px;
	max-height: 400px;
	overflow-y: auto;
}

.notification-item {
	white-space: normal;
	border-bottom: 1px solid #eee;
	padding: 10px;
	display: block;
	color: #333;
	text-decoration: none;
}

.notification-item:hover {
	background-color: #f8f9fa;
	text-decoration: none;
	color: #333;
}

.notification-item.unread {
	background-color: #e8f5e9;
}

.card {
	border: none;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.card-header {
	background-color: white;
	border-bottom: 1px solid #f0f0f0;
	font-weight: 600;
	padding: 1rem 1.5rem;
}

.page-title {
	color: var(--secondary-color);
	font-weight: 700;
	margin-bottom: 1.5rem;
	border-bottom: 3px solid var(--accent-color);
	display: inline-block;
	padding-bottom: 5px;
}
.site-slogan {
	font-size: 16px;
	color: #000;
}