.yce-event-popup {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yce-event-popup__wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.yce-event-popup__inner {
    padding: 2rem;
    border: 2px solid #c47d31;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
}

.yce-event-popup__close {
    background-color: #c47d31;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.5s ease;
    cursor: pointer;
}

.yce-event-popup__close:hover {
    background-color: #a66b2d;
}

/* ✅ Responsive Media Queries */
@media screen and (max-width: 768px) {
    .yce-event-popup__wrapper {
        width: 80%;
    }
}

@media screen and (max-width: 450px) {
    .yce-event-popup__wrapper {
        width: 95%;
    }
}
.yce-event-popup {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}