/**
 * PCMCU Popup Styles
 * Modal popup for leaving site confirmation
 */

.pcmcu-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

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

.pcmcu-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.pcmcu-popup-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.pcmcu-popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pcmcu-popup-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pcmcu-popup-cancel {
    background: #6c757d;
    color: #fff;
}

.pcmcu-popup-cancel:hover {
    background: #5a6268;
}

.pcmcu-popup-confirm {
    background: #007cba;
    color: #fff;
}

.pcmcu-popup-confirm:hover {
    background: #005a87;
}

/* Responsive design */
@media (max-width: 480px) {
    .pcmcu-popup-content {
        padding: 20px;
        margin: 20px;
    }

    .pcmcu-popup-buttons {
        flex-direction: column;
    }

    .pcmcu-popup-btn {
        width: 100%;
    }
}