/* PushGate Modal Styles */
.pushgate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.pushgate-modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pushgate-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.pushgate-modal-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.pushgate-modal-content button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 5px;
}

.pushgate-modal-content #pushgate-allow-btn {
    background-color: #007cba;
    color: #fff;
}

.pushgate-modal-content #pushgate-allow-btn:hover {
    background-color: #006ba1;
}

.pushgate-modal-content #pushgate-close-btn {
    background-color: #e2e4e7;
    color: #3c434a;
}

.pushgate-modal-content #pushgate-close-btn:hover {
    background-color: #c3c4c7;
}
