/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 30 2026 | 18:16:21 */
/* Wrapper and Header */
.wc-cal-wrapper {
    color: #004376;
    position: relative; /* Context for offcanvas if needed, but offcanvas uses fixed */
}

.wc-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wc-cal-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
}

.wc-cal-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0 !important;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.wc-cal-nav #wc-cal-month-label {
    color: #004376;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
}

.wc-cal-controls {
    display: flex;
    gap: 6px;
    font-size: 18px;
    color: #99B4C8;
    line-height: 1.3;
    cursor: pointer;
}

.wc-cal-controls span.active {
    color: #004376;
}

.wc-cal-filter-trigger {
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
	line-height: 1.3;
	font-weight: 500;
	    display: flex;
    align-items: center;
    gap: 4px;
    color: #004376;
}

/* Grid View */
.wc-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid #CCD9E4;
    border-left: 1px solid #CCD9E4;
}

.wc-cal-grid#wc-cal-grid-body {
    border-top: none;
}
 
.wc-cal-grid-header {
    padding: 16px;
    font-size: 14px;
    line-height: 1.3;
    color: #99B4C8;
    text-transform: uppercase;
    border-right: 1px solid #CCD9E4;
    border-bottom: 1px solid #CCD9E4;
	background: #F2F5F8;
}

.wc-cal-cell {
    min-height: 180px;
    padding: 16px;
    border-right: 1px solid #CCD9E4;
    border-bottom: 1px solid #CCD9E4;
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s ease;
}

.wc-cal-cell .date-num {
    font-size: 14px;
    line-height: 1.3;
    color: #99B4C8;
    margin-bottom: auto;
}

.wc-cal-cell.has-events {
    position: relative;
    cursor: pointer;
}

.wc-cal-cell.has-events:before {
    position: absolute;
    content: "";
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    background: url("/wp-content/uploads/2025/12/Arrow-link.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wc-cal-cell.has-events:hover:before {
    opacity: 1;
}

.wc-cal-cell.has-events:hover {
    background-color: #F2F5F8;
}

.wc-cal-event-badge {
        display: flex;
    gap: 8px;
    align-items: center;
    color: #004376;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    width: 100%;
    background: #fff;
    padding: 8px;
    border: 1px solid #CCD9E4;
}

.wc-cal-event-badge .count {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    width: 47px;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F5F8;
    border: 1px solid #F2F5F8;
    transition: border 0.2s ease;
}

.wc-cal-cell.has-events:hover .wc-cal-event-badge .count {
    border: 1px solid #CCD9E4;
}

.wc-cal-event-badge .label {
    font-size: 14px;
    line-height: 1.3;
}

/* List View */
.wc-cal-list {
    display: none;
	border-bottom: 1px solid #CCD9E4;
}
.wc-cal-list:has(.wc-cal-list-pagination) {
	border-bottom: none;
}
.wc-cal-list-pagination {
	border-top: 1px solid #CCD9E4;
	display: flex;
    align-items: center;
    justify-content: center;
}

.wc-cal-list-day {
    padding: 24px;
    border-top: 1px solid #CCD9E4;
	border-left: 1px solid #CCD9E4;
	border-right: 1px solid #CCD9E4;
}

.wc-cal-list-day h3 {
    font-size: 24px;
    color: #004376;
	line-height: 1.3;
    margin-bottom: 8px;
}

.wc-cal-list-item {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 32px 0;
    border-bottom: 1px solid #CCD9E4;
    transition: background-color 0.2s;
}
.wc-cal-list-day>.wc-cal-list-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}


.wc-cal-list-item .title {
    font-size: 18px;
	line-height: 1.3;
    color: #004376;
    margin-bottom: 12px;
    font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.wc-cal-list-item .title img {
	width: 20px;
    height: 20px;
}

.wc-cal-list-item .time {
    font-size: 14px;
    color: #668EAD;
	gap: 8px;
    display: flex;
    align-items: center;
}

/* Offcanvas Sidebar & Overlay */
.wc-cal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001A2Fcc; /* Dark overlay matching design */
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wc-cal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wc-cal-offcanvas {
    position: fixed;
    top: 0;
    right: -480px; /* Hidden state */
    width: 480px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wc-cal-offcanvas.active {
    right: 0;
}

.wc-cal-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  32px;
    border-bottom: 1px solid #CCD9E4;
}

.wc-cal-offcanvas-header h2 {
    margin: 0;
    font-size: 56px;
    color: #004376;
    font-weight: 400;
	line-height: 1.3;
}

.wc-cal-offcanvas-header button {
    background: none;
    border: none;
    cursor: pointer;
    color: #99B4C8;
    padding: 0;
    line-height: 1;
}

.wc-cal-offcanvas-header button:hover,
.wc-cal-offcanvas-header button:active,
.wc-cal-offcanvas-header button:focus,
.wc-cal-offcanvas-header button:target{
    color: #004376;
	background: none;
}

.wc-cal-offcanvas-body {
    padding:  32px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Offcanvas Event Items */
.wc-cal-list-item.offcanvas-item {
    padding: 24px;
    border-top: 1px solid #CCD9E4;
	border-right: 1px solid #CCD9E4;
	border-left: 1px solid #CCD9E4;
	border-bottom: none;

}
.wc-cal-list-item.offcanvas-item:last-child {
	border-bottom: 1px solid #CCD9E4;

}

.wc-cal-list-item.offcanvas-item:hover {
    background-color: #f2f5f8;
}
#wc-cal-custom-filters .wc-cal-filter-group:last-child {
	    border-bottom: 1px solid #CCD9E4!important;
}
.wc-cal-list-item .title span {
		 display: -webkit-box;
  -webkit-line-clamp: 3;      /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
	}

/* Responsive Offcanvas */
@media screen and (max-width: 1024px) {
    .wc-cal-offcanvas {
        width: 100%;
        right: -100%;
    }
	.wc-cal-offcanvas-header button {
		border: 1px solid #004376;
    width: 48px;
    height: 48px;
	}
	.wc-cal-offcanvas-header,
	.wc-cal-offcanvas-body{
		background: #F2F5F8;
	}
	.wc-cal-offcanvas:has(#wc-cal-custom-filters.active) .wc-cal-offcanvas-header,
	.wc-cal-offcanvas-body:has(#wc-cal-custom-filters.active) {
		background: #fff;
	}
	.wc-cal-list-item.offcanvas-item {
		background: #fff;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wc-cal-event-badge {
        flex-direction: column;
    border: none;
    padding: 0;
    gap: 12px;
		background: transparent;
    }
	.wc-cal-cell {
		min-width: 100px;
        min-height: 133px;
        padding: 12px;
        width: 100%;
    
	}
	.wc-cal-cell.has-events:hover .wc-cal-event-badge .count {
		background: #fff;
		border-color: #fff;
	}
	.wc-cal-cell.has-events:hover:before {
		opacity: 0;
	}
	.wc-cal-event-badge .count {
		width: 100%;
    min-height: 32px;
    font-size: 20px;
    line-height: 1.3;
		font-weight: 600;
	}
	.wc-cal-event-badge .label {
     display: -webkit-box;
  -webkit-line-clamp: 2;      /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
	.wc-cal-list-day h3 {
    font-size: 20px;
    
}
}

/* Responsive Offcanvas */
@media screen and (max-width: 767px) {
	.wc-cal-list-day {
		border-left: none;
		border-right: none;
	}
	.wc-cal-list-day h3 {
    font-size: 20px;
    
}
	.wc-cal-offcanvas-header h2 {
		font-size: 40px;
		line-height: 1.04;
		font-weight: 400;
	}
   .wc-cal-event-badge {
        flex-direction: column;
    border: none;
    padding: 0;
    gap: 12px;
		background: transparent;
    }
	.wc-cal-grid {
		border-top: none;
	}
	.wc-cal-grid-header {
		min-width: 47px;
		width: 100%;
		font-size: 12px;
		line-height: 1.3;
		padding: 12px 9px;
		border-top: 1px solid #CCD9E4;
	}
	.wc-cal-cell {
		width: 100%;
        min-height: 80px;
        padding: 8px;
        min-width: 47px;
	}
	.wc-cal-cell.has-events:hover .wc-cal-event-badge .count {
		background: #fff;
		border-color: #fff;
	}
	.wc-cal-cell.has-events:hover:before {
		opacity: 0;
	}
	.wc-cal-event-badge .count {
		width: 100%;
    min-height: 32px;
    font-size: 16px;
    line-height: 1.3;
		font-weight: 600;
	}
	.wc-cal-event-badge .label {
     display: none;
 
}
	.wc-cal-header {
		gap: 24px;
		    flex-wrap: wrap;
    justify-content: space-between;
		padding-left: 24px;
		padding-right: 24px;
	}
	.wc-cal-controls {
		    width: 46%;
	}
	.wc-cal-nav {
		order: 2;
    width: 100%;
    justify-content: space-between;
	}
	.wc-cal-filter-trigger {
		width: 46%;
    justify-content: end;
	}
	#wc-cal-grid-view {
		padding-left: 24px;
		padding-right: 24px;
	}
	.wc-cal-list-item .title span {
		 display: -webkit-box;
  -webkit-line-clamp: 3;      /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
	}
}