/**
 * PMS LearnPress Integration - Front-end Styles
 * NO ANIMATIONS OR TRANSITIONS
 */

/* Popup Overlay */
.pms-lp-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;
    align-items: center;
    justify-content: center;
}

.pms-lp-popup-overlay.active {
    display: flex !important;
}

/* Popup Content */
.pms-lp-popup-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 0;
}

/* Close Button */
.pms-lp-popup-close {
    position: absolute;
    top: 8px;
    right: 6px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    z-index: 10;
}

.pms-lp-popup-close:hover {
    opacity: 0.7;
}

.pms-lp-popup-close-icon {
    font-size: 25px;
    color: #666;
    font-weight: 600;
    line-height: 0.5;
    display: block;
}

/* Popup Body */
.pms-lp-popup-body {
    padding: 40px 35px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pms-lp-popup-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.pms-lp-popup-message {
    margin: 0 0 30px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Popup Actions */
.pms-lp-popup-actions {
    text-align: center;
}

.pms-lp-popup-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #E7B985;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    line-height: 1.5;
}

.pms-lp-popup-button:hover,
.pms-lp-popup-button:focus {
    background-color: #d4a574;
    color: #ffffff !important;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .pms-lp-popup-content {
        width: 95%;
        margin: 20px;
    }

    .pms-lp-popup-body {
        padding: 30px 25px 25px;
    }

    .pms-lp-popup-title {
        font-size: 20px;
    }

    .pms-lp-popup-message {
        font-size: 15px;
    }

    .pms-lp-popup-button {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
    }
}