#yec-calendar-container {
    max-width: 90%;
    font-family: sans-serif;
    position: relative;
    backdrop-filter: blur(14px);
    background: #ffffff42;
    padding: 19px 20px;
    border-radius: 10px;
}
#yec-controls span {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
#yec-controls button {
    border-color: #fff;
    border-radius: 50%;
    color: #fff;
}
#yec-controls {
    text-align: center;
    margin-bottom: 10px;
}
#yec-controls button {
    padding: 5px 10px;
    margin: 0 5px;
}

.yec-weekdays, .yec-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.yec-weekdays div {
    font-weight: bold;
    padding: 4px 0;
}
.yec-weekdays div {
    font-weight: bold;
    padding: 4px 0;
    color: #fff;
}
.yec-day {
    padding: 10px 0;
    border: 1px solid #ddd;
    background: #f9f9f9;
    position: relative;
}
/* .yec-day.has-event {
    background-color: #ffeaa7;
    cursor: pointer;
} */
.yec-day.yec-empty {
    background: transparent;
    border: none;
}
#yec-popup {
    position: absolute;
    background: #80004f;
    padding: 20px 12px;
    border: 1px solid #80004f;
    z-index: 999;
    max-width: 50% !important;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
}
.yec-hidden {
    display: none;
}
.yec-popup-inner {
    position: relative;
}
.yec-close:hover{
	background:transparent;
}
.yec-close {
    position: absolute;
    top: -5px;
    right: 5px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    padding: 0;
    line-height: 1;
}

.yec-hidden {
    display: none;
}
