/* Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Модальное окно */
.popup-modal {
    position: relative;
    background: #fff;
    padding: 30px 35px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

/* Кнопка закрытия */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #666;
    font-size: 28px;
    line-height: 1;
    transition: color 0.2s;
    font-weight: 300;
}

.popup-close:hover {
    color: #333;
}

/* Контент */
.popup-content h3 {
    margin: 0 0 18px 0;
    font-size: 19px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.popup-content p {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #FF0000;
}

.popup-content p:last-child {
    margin-bottom: 0;
}

.popup-content .closed-info {
    font-weight: 600;
    color: #FF0000;
}

.popup-content .open-info {
    font-weight: 600;
    color: #FF0000;
}

/* Адаптив для планшетов */
@media (max-width: 768px) {
    .popup-modal {
        padding: 25px 30px;
		margin: 10px;
    }

    .popup-content h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .popup-content p {
        font-size: 14px;
    }
}

/* Адаптив для мобильных */
@media (max-width: 480px) {


    .popup-modal {
        padding: 25px 20px;
		margin: 10px;
    }

    .popup-close {
        width: 28px;
        height: 28px;
        font-size: 26px;
        top: 8px;
        right: 8px;
    }

    .popup-content h3 {
        font-size: 17px;
        margin-bottom: 14px;
        padding-right: 25px;
    }

    .popup-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Адаптив для маленьких экранов */
@media (max-width: 360px) {
    .popup-modal {
        padding: 20px 15px;
		margin: 10px;
    }

    .popup-content h3 {
        font-size: 16px;
    }

    .popup-content p {
        font-size: 13px;
    }
}