:root {
	--primary-color: #2c5aa0;
	--secondary-color: #6c757d;
	--accent-color: #17a2b8;
	--light-color: #f8f9fa;
	--dark-color: #343a40;
	--success-color: #28a745;
	--border-radius: 12px;
	--box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	--transition: all 0.3s ease;
}

* {
	font-family: 'Poppins', sans-serif;
}

body {
	background-color: #f5f7fb;
	color: #333;
	line-height: 1.6;
}

.header {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
	color: white;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: var(--box-shadow);
}

.logo-container {
	display: flex;
	align-items: center;
}

.logo {
	height: 70px;
	width: auto;

}

.user-info {
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 0.75rem 1.25rem;
	backdrop-filter: blur(10px);
}

.navbar-custom {
	background: linear-gradient(to right, var(--dark-color), #495057);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 0.5rem 1rem;
}

.nav-link {
	color: rgba(255, 255, 255, 0.85) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	border-radius: 8px;
	transition: var(--transition);
	margin: 0 2px;
}

.nav-link:hover, .nav-link.active {
	color: white !important;
	background-color: rgba(255, 255, 255, 0.15);
}

.login-form {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    backdrop-filter: blur(10px);
	color: #000;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.375rem 0.75rem;
}

.login-form input[type="image"] {
    transition: transform 0.2s;
}

.login-form input[type="image"]:hover {
    transform: scale(1.05);
}

.main-content {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 2rem;
	margin-bottom: 2rem;
	min-height: 500px;
}

.sidebar {
	background-color: white;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	padding: 1.5rem;
	height: 100%;
}

.sidebar-title {
	color: var(--primary-color);
	font-weight: 600;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.feature-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
	transition: var(--transition);
	height: 100%;
	border: none;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.footer {
	background: linear-gradient(to right, var(--dark-color), #495057);
	color: white;
	border-radius: var(--border-radius);
	padding: 1.5rem;
	text-align: center;
	box-shadow: var(--box-shadow);
}

.btn-custom {
	background: linear-gradient(to right, var(--primary-color), var(--accent-color));
	border: none;
	border-radius: 8px;
	color: white;
	font-weight: 500;
	padding: 0.5rem 1.5rem;
	transition: var(--transition);
}

.btn-custom:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	color: white;
}

.welcome-banner {
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	border-left: 5px solid var(--primary-color);
}

.stats-card {
	background: white;
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	border-top: 4px solid var(--primary-color);
}

.stats-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.header {
		text-align: center;
	}

	.logo-container {
		justify-content: center;
		margin-bottom: 1rem;
	}

	.user-info {
		width: 100%;
	}
}
    