#calendar_block {
	margin: 0 auto;
	margin-bottom: 20px;
	max-width: 203px;
}
table#calendar_table{
	border-collapse: separate;
	border-spacing: 1px;
}
div.calendar-header{
	font-size: 16px;
	font-weight: 700;
}
.calendar-head-body{
	display: flex;
	width: 100%;
	align-items:center;
	div {
		display: block;
		width: 25%;
		button {
			background:none;
			border:none;
			width: 100%;
			cursor: pointer;
			/* 
			font-size: 36px;
			font-weight: 900;
			color: #6b001c; */

			/* height: 50px; */
			/* width: auto; */

			width: 100%;
			height: 30px;
			
		}
		button.calendar-left-btn{
			/* text-align: left; */
			/* background:center / contain no-repeat url("/img/left.svg"); */
			/* background:center / contain no-repeat url("/img/png/3.png"); */
			background:center / contain no-repeat url("/static/images/calendar/3.png");
		}
		button.calendar-right-btn{
			/* text-align: right; */
			/* background:center / contain no-repeat url("/img/right.svg"); */
			/* background:center / contain no-repeat url("/img/png/4.png"); */
			background:center / contain no-repeat url("/static/images/calendar/4.png");
			
		}
	}
	span{
		display: block;
		width: 50%;
	}
}

table#calendar_table {
	width: 203px;
	margin: 0 auto;
	caption {
		text-align: center;
	}

}
.eventDay {
	background: #6b001c;
	color: white;
	cursor: pointer;
	border-radius: 4px;
}
td {
	text-align: center;
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,251,224,  0.5);
	backdrop-filter: blur(5px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	transition: all 0.3s ease;
}

.modal.active {
	opacity: 1;
	display: flex;
}

.modal-content {
	background: white;
	padding: 30px;
	border-radius: 8px;
	max-width: 700px;
	width: 90%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transform: scale(0.9);
	transition: all 0.3s ease;
}

.modal.active .modal-content {
	transform: scale(1);
}

.modal-open-btn {
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

.modal-close-btn {
	margin-top: 20px;
	padding: 8px 16px;
	background: #6b001c;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: .2s;
}
.modal-close-btn:hover{
	transition: .2s;
	box-shadow: 2px 0px 10px #6b001c, -2px 0px 10px #6b001c;
}
.eventDay:hover{
	transition: .2s;
	box-shadow: 2px 0px 10px #6b001c, -2px 0px 10px #6b001c;
}
.date-start {
	margin-bottom: 0;
}
.modal-title {
	margin-top: 0;
}
.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
