/* CSS Document */
.multiple_ajax_calendar_widget{ overflow:visible !important;}
.wp-calendar, .wp-calendar {
	width: 100%;
	padding: 0 0;
	background:#222;
	border-radius: 0px 0px 10px 10px;
}
.widget_calendar #calendar_wrap {
	margin:0;
	padding:0;
}
.wp-calendar caption, .wp-calendar caption {
	padding: 10px 5px;
	font-size:14px;
	color:#fff;
	background:#b51378;
	display: table-caption;
    text-align: center;
	border-radius: 10px 10px 0px 0px;
}

.wp-calendar .calendar-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.wp-calendar .month-selector,
.wp-calendar .year-selector {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	padding: 4px 8px;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
}

.wp-calendar .month-selector:hover,
.wp-calendar .year-selector:hover {
	background: rgba(255, 255, 255, 1);
	border-color: rgba(255, 255, 255, 0.5);
}

.wp-calendar .month-selector:focus,
.wp-calendar .year-selector:focus {
	background: rgba(255, 255, 255, 1);
	border-color: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.wp-calendar .month-selector {
	min-width: 100px;
}

.wp-calendar .year-selector {
	min-width: 70px;
}
.wp-calendar th, .wp-calendar td {
padding: 5px;
text-align:center;
background:#b51378;
color:#FFF;
}

/* Today styling */
.wp-calendar td#today {
	background: #ffeb3b !important;
	color: #333 !important;
	font-weight: bold;
	border-radius: 3px;
}

.wp-calendar td#today a {
	color: #333 !important;
}
.wp-calendar td a, .wp-calendar td a:link {
	background:transparent;
	color:#b51378;	
}
.wp-calendar td a:hover {
	text-decoration:underline;
}
.wp-calendar td, .wp-calendar td { background:transparent; }
.wp-calendar td, table.wp-calendar th, .wp-calendar td, table.wp-calendar th { padding: 2px 0; }
.wp-calendar tfoot td, .wp-calendar tfoot td { 
	padding: 8px 5px; 
	background: #b51378;
	color: #fff;
	border-top: 1px solid rgba(255,255,255,0.2);
}
.wp-calendar tfoot td.pad {
	background: transparent;
}
.wp-calendar tfoot td#prev a, .wp-calendar tfoot td#next a {
	color: #fff !important;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 2px 5px;
	border-radius: 3px;
	background: rgba(255,255,255,0.1);
	transition: all 0.3s ease;
}
.wp-calendar tfoot td#prev a:hover, .wp-calendar tfoot td#next a:hover {
	background: rgba(255,255,255,0.2);
	text-decoration: none;
}
.wp-calendar .day-events{display:none;
line-height:1.6;
text-align:left;
color:#000;
text-shadow: 1px 1px 1px #cccccc;
filter: dropshadow(color=#cccccc, offx=1, offy=1);
width:200px;
	position: absolute;
	z-index:9999;
	margin:0px 0px 0px -85px;
	padding:5px;
	background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
-webkit-box-shadow:  0px 0px 5px 5px rgba(0, 0, 0, 0.1);
        
        box-shadow:  0px 0px 5px 5px rgba(0, 0, 0, 0.1);
	border: 2px solid #000000;
	-webkit-border-radius: 5px;
border-radius: 5px;
}
.day-events:after, .day-events:before {
	bottom: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.day-events:after {
	border-color: rgba(237, 237, 237, 0);
	border-bottom-color: #ededed;
	border-width: 5px;
	left: 50%;
	margin-left: -5px;
}
.day-events:before {
	border-color: rgba(0, 0, 0, 0);
	border-bottom-color: #000000;
	border-width: 8px;
	left: 50%;
	margin-left: -8px;
}
.wp-calendar .day-events a,.wp-calendar .day-events a:link,.wp-calendar .day-events a:visited{
color:#000 ;
text-shadow: 1px 1px 1px #cccccc;
filter: dropshadow(color=#cccccc, offx=1, offy=1);
display:inline-block;
}
.wp-calendar .day-events a:hover{
color: #999 ;
text-shadow: 1px 1px 1px #cccccc;
filter: dropshadow(color=#cccccc, offx=1, offy=1);
}
.wp-calendar .day-events img.attachment-thumbnail{float: left;
margin:0px 5px;
vertical-align: middle;}
.wp-clear{ clear:both;}