/* Затемнение */
.simple-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: none; /* По умолчанию скрыт */
    justify-content: center;
    align-items: center;
}

/* Контейнер попапа - для центрирования */
.simple-popup-container {
    position: relative;
    margin: 0 auto;
    animation: simple-popup-fade-in 0.3s ease;
}

/* Кнопка закрытия крестиком */
.simple-popup-close {
    position: absolute;
    top: -40px;
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    line-height: 1;
    transition: opacity 0.3s;
}

.simple-popup-close:hover {
    opacity: 0.7;
}

/* Контент попапа */
.simple-popup-content {
    background: transparent;
    overflow: auto;
    max-height: 90vh;
}

/* Анимация появления */
@keyframes simple-popup-fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}