/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
<style>
/* ============ WT MODERN CALENDAR ============ */

.main-page {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 24px !important;
    background: linear-gradient(145deg, #f7f9fc, #ffffff) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(148, 163, 184, 0.25) !important;
    color: #0f172a !important;
}


.wt-calendar-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: #0f172a;
}

.wt-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 12px;
}

.wt-calendar-nav a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    color: #0f172a;
    background: #e5edff;
    border: 1px solid transparent;
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.wt-calendar-nav a:hover {
    background: #d0ddff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.wt-calendar-select {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 4px 10px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 999px;
}

.wt-calendar-select select,
.wt-calendar-select input[type="number"] {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 4px 10px;
    font-size: 13px;
    background: #ffffff;
    outline: none;
    min-width: 110px;
}

.wt-calendar-select button {
    border-radius: 999px;
    border: none;
    padding: 5px 15px;
    font-size: 13px;
    background: #0f172a;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.wt-calendar-select button:hover {
    background: #bd9545;
    transform: translateY(-1px);
}

/* Month note bar */

.wt-month-note {
    padding: 10px 14px;
    margin-bottom: 18px;
    background: linear-gradient(120deg, #eef2ff, #e0f2fe);
    border-radius: 12px;
    border: 1px solid rgba(129, 140, 248, 0.5);
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
	font-weight:500;
}

.wt-month-note strong {
    color: #1e293b;
}

/* Calendar table */

.wt-calendar {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border-radius: 16px;
    overflow: hidden;
    background: #f9fafb;
}

.wt-calendar thead {
    background: #0f172a;
    color: #e5e7eb;
}

.wt-calendar th {
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wt-calendar td {
    border: 1px solid #e5e7eb;
    height: 100px;
    padding: 6px;
    background: #ffffff;
    vertical-align: top;
    transition: background 0.1s ease, box-shadow 0.12s ease, transform 0.08s ease;
}

/* subtle hover on any day */
.wt-calendar td:hover {
    background: #f3f4ff;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.3);
}

/* empty cells */
.wt-empty {
    background: #f3f4f6;
}

/* day container */

.wt-day {
    position: relative;
    width: 100%;
    height: 100%;
}

.wt-date-number {
    display: flex;
    justify-content: flex-end;
    font-size: 40px;
    font-weight: 700;
    color: #6b7280;
}

/* today highlight */
.wt-day.today .wt-date-number {
    color: #2563eb;
}

.wt-day.today::before {
    content: "Today";
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
}

/* Events inside cell */

.wt-events-list {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.3;
    text-align: left;
    max-height: 72px;
    overflow-y: auto;
    padding-right: 2px;
}

.wt-event-item + .wt-event-item {
    margin-top: 4px;
    border-top: 1px dashed #e5e7eb;
    padding-top: 4px;
}

/* REG badge */

.wt-event-reg {
	display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1f2124;
}

/* Activity text */

.wt-event-activity {
    margin-top: 2px;
    font-size: 12px;
    color: #111827;
}

/* cells with events */

.has-event {
    background: linear-gradient(180deg, #ffffff, #f3f4ff);
}

/* Tooltip for combined note (all events) */

.has-event .wt-day {
    cursor: pointer;
}

.has-event .wt-day::after {
    content: attr(data-note);
    position: absolute;
    left: 50%;
    bottom: 60%;
    transform: translateX(-50%);
    white-space: pre-line;
    background: #f9fafb ;
    color: #020617;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 12px;
	font-weight:500;
    min-width: 170px;
    max-width: 260px;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.has-event .wt-day:hover::after {
    opacity: 1;
    transform: translate(-50%, -4px);
}
.wt-calendar .wt-events-list::-webkit-scrollbar {
    width: 3px;
    height: 2px;
}

.wt-calendar .wt-events-list::-webkit-scrollbar-thumb {
    background: #BD9545;
    border-radius: 10px;
	width: 10px ;
}

.wt-calendar .wt-events-list::-webkit-scrollbar-track {
    background: #ccc5;
}
/* mobile tweaks */

@media (max-width: 767px) {
    .wt-calendar-wrapper {
        padding: 16px;
        margin: 20px 10px;
    }

    .wt-calendar-title {
        font-size: 20px;
    }
	.wt-date-number{
		font-size:24px;
	}

    .wt-calendar-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .wt-calendar-select {
        justify-content: center;
/*         flex-wrap: wrap; */
    }

    .wt-calendar th,
    .wt-calendar td {
        font-size: 10px;
        padding: 4px;
        height: 70px;
    }

    .wt-events-list {
        font-size: 10px;
    }
	table.wt-calendar {
    overflow: auto;
    table-layout: auto;
	}
}
@media (max-width: 1024px) {
.wt-date-number{
  font-size:24px;
}
.wt-calendar-wrapper.main-page {
    overflow-x: hidden;
}
	
.wt-calendar,
.wt-calendar table,
.wt-calendar td,
.wt-calendar .wt-day-cell {
    overflow-y: visible !important;  
}
.wt-calendar * {
    transform: none; 
}
.has-event .wt-day::after {
    z-index: 9999;
}

}
@media (max-width: 768px) {
    .wt-calendar-wrapper.main-page {
        overflow-x: hidden !important;
    }
    table.wt-calendar {
        overflow: auto;
        table-layout: fixed;
        display: block !important;
    }
}

</style>