.notification-bell {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #FF5733;
	border-radius: 50%;
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	z-index: 10;
	box-shadow: 0 4px 8px rgb(0 0 0 / .1)
}

.bell-icon {
	font-size: 18px;
	color: #fff
}

.notification-count {
	position: absolute;
	top: -5px;
	right: -5px;
	background-color: red;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20
}

.new-btn {
	position: relative;
	text-decoration: none;
	color: #000;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	font-weight: 700;
	background-color: #f8f9fa;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
	display: flex;
	border: 1px solid #ddd;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 180px
	font-family: 'Tiro Devanagari Hindi', serif;
}

.new-btn:hover {
	background-color: #fff;
	box-shadow: 0 6px 12px rgb(0 0 0 / 30%);
	border: 1px solid green;
	color: red
}

.new-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 8px;
	justify-content: center;
	margin: 3px;
}

.new-btn {
	text-decoration: none;
	color: #000;
	padding: 5px;
	border: 1px solid green;
	border-radius: 8px;
	text-align: center;
	font-weight: 700;
	background-color: #f8f9fa;
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 3px rgb(0 0 0 / 10%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border: 1px solid green;
	width: 100%;
	height: 120px;
	font-family: 'Tiro Devanagari Hindi', serif;
}

.new-btn:hover {
	background-color: #fff;
	box-shadow: 0 6px 12px rgb(0 0 0 / 30%);
	border: 1px solid red;
	color: red;
	text-decoration: none;
}

.new-category-image {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-top: 0px;
	object-fit: cover
}

.new-category-name {
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin-bottom: 10px;
	font-family: 'Tiro Devanagari Hindi', serif;
}

.new-category-section,
.new-subject-section {
	padding: 5px;
	margin-top: 0px;
	text-align: center
}

.new-category-name:hover {
	color: red;
}