/* ===== layout.css - Estrutura e Layout ===== */
body {
	display: flex;
	flex-direction: column;
}

main.d-flex {
	display: flex;
	flex: 1;
	min-height: 100vh;
	overflow: auto;
	flex-direction: row;
}

main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
	box-sizing: border-box;
	flex: 1;
}

section {
	margin-bottom: 3rem;
}

.sidebar {
	flex-shrink: 0;
	width: 250px;
	background-color: #212529;
	color: white;
	padding: 1rem;
	position: relative;
}

.sidebar .nav-link {
	color: white;
}

.sidebar .nav-link.active {
	background-color: #0d6efd;
}

.nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffc107 !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}
