body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #f8f9fa;
}

.navbar {
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
	transition: transform 0.3s ease;
}

.navbar-brand img:hover {
	transform: scale(1.05);
}

.hero-section {
	background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
	padding: 4rem 0;
}

.hero-section h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.card {
	border: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.list-group-item {
	border: none;
	margin-bottom: 0.5rem;
	border-radius: 0.5rem !important;
	transition: background-color 0.3s ease;
}

.list-group-item:hover {
	background-color: #f8f9fa;
}

.list-group-item i {
	width: 20px;
}

.form-control {
	border: 1px solid #dee2e6;
	padding: 0.75rem;
}

.form-control:focus {
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.btn-primary {
	padding: 0.75rem 2rem;
	font-weight: 500;
	transition: transform 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
}

.footer {
	margin-top: auto;
	background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

.footer a:hover {
	color: #0d6efd !important;
}

/* Alert animations and styles */
.alert {
	transition: opacity 0.5s ease-in-out;
}

.alert.fade-out {
	opacity: 0;
}

.alert.show {
	opacity: 1;
}

.alert-success, .alert-danger {
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alert-success {
	background-color: #d4edda;
	border-left: 4px solid #28a745;
}

.alert-danger {
	background-color: #f8d7da;
	border-left: 4px solid #dc3545;
}

@media (max-width: 768px) {
	.hero-section {
		padding: 2rem 0;
	}
	
	.hero-section h1 {
		font-size: 2rem;
	}
}