/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background-color: white;
}


/* Dashboard grid */
.dashboard {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 50px;
	padding: 120px;
	justify-content: center;
	max-width: 700px;
	margin: auto;
}

/* Dashboard buttons (common) */
.dash-btn {
	position: relative;
	width: 250px;
	height: 80px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	padding: 20px;
	border-radius: 20px;
	cursor: pointer;
	overflow: hidden;
	color: #fff;
	transition: transform 0.2s;
}

/* Role-specific buttons */
.cadmin-btn {
	background-color: #050555;
}

.cadmin-btn:hover {
	background-color: #080888;
}

