.angie-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-popup-wrapper.is-open {
    opacity: 1;
    visibility: visible;
}

.angie-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.angie-popup-content-wrapper {
    position: relative;
    background: #fff;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    padding: 20px;
    z-index: 100000;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.angie-popup-wrapper.is-open .angie-popup-content-wrapper {
    transform: scale(1);
}

.angie-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    z-index: 100001;
    padding: 0;
    width: auto;
    height: auto;
}

.angie-popup-close:hover {
    color: #000;
}

body.angie-popup-active {
    overflow: hidden;
}
