.calendar_event_show_more{
	display: flex;
	justify-content: center;
}
.calendar_event_show_more div{
	width: fit-content;
	cursor: pointer;
	display: flex;
	padding: 20px 60px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--black, #000);
	color: var(--black, #000);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	text-decoration: none;
	transition-duration: 0.3s;
}
.calendar_event_show_more div:hover{
	background: var(--black, #000);
	color: white;
}