.vpx-collection-push-box {
    margin: 25px 0;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #000033, #d30861);
    color: #ffffff;
    font-family: Arial, sans-serif;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.vpx-collection-push-title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 8px;
}

.vpx-collection-push-text {
    font-size: 15px;
    margin-bottom: 15px;
    color: #ffffff;
}

.vpx-push-option {
    display: block;
    margin: 10px 0;
    font-size: 15px;
    cursor: pointer;
}

.vpx-push-option input {
    margin-right: 8px;
}

.vpx-push-actions {
    margin-top: 16px;
}

.vpx-push-subscribe-btn,
.vpx-push-unsubscribe-btn,
.vpx-push-login-btn {
    display: inline-block;
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    background: #ffffff;
    color: #d30861;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.vpx-push-subscribe-btn:hover,
.vpx-push-unsubscribe-btn:hover,
.vpx-push-login-btn:hover {
    opacity: 0.9;
}

.vpx-push-status {
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

/* Fenêtre connexion obligatoire */
.vpx-push-modal-overlay {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vpx-push-modal {
    width: 560px;
    max-width: calc(100% - 30px);
    background: #ffffff;
    border-radius: 2px;
    padding: 20px 16px 16px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    font-family: Arial, sans-serif;
}

.vpx-push-modal p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

.vpx-push-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 30px;
}

.vpx-push-modal-close {
    border: none;
    background: #eeeeee;
    color: #777777;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
}

.vpx-push-modal-login {
    display: inline-block;
    background: #ff5722;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}