/* Configuración básica de la página */

body {
	font-family:
		system-ui,
		-apple-system,
		sans-serif;
	max-width: 1000px;
	margin: 2rem auto;
	padding: 0 1rem;
	color: #333;
	line-height: 1.5;
}

.card {
	border: 1px solid #ddd;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
	background: #f9f9f9;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

/* Utilidades */
.text-center {
	text-align: center;
}
.text-small-muted {
	font-size: 0.9rem;
	color: #666;
}
.margin-bottom-1 {
	margin-bottom: 1rem;
}
.margin-right-15 {
	margin-right: 15px;
}
