.weilo-change-modal-box .weilo-change-close-modal:hover {
    color: #000 !important;
}
/* 🔷 Estilos del modal de cambio de suscripción (igual que cancelación) */
.weilo-change-modal-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* Popup de cambio de suscripción mejorado */
.weilo-change-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 35px 40px;
    max-width: 650px;
    width: 100%;
    text-align: left;
    position: relative;
    animation: fadeInScale .25s ease-out;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.weilo-change-modal-box h3 {
    color: #cc491d;
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 700;
}

.weilo-change-modal-box ol {
    padding-left: 18px;
    margin-bottom: 1.5em;
}
.weilo-change-modal-box ol li {
    font-size: 15px;
    line-height: 1.6em;
    color: #444;
    margin-bottom: 18px;
}
.weilo-change-modal-box ol li strong {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.weilo-change-refund-amount {
    display: inline-block;
    color: #cc491d;
    font-size: 17px;
    margin-left: 6px;
}
.weilo-change-modal-box ul.weilo-change-refund-dates li {
    font-size: 15px;
    line-height: 1.6em;
    color: #444;
    margin-bottom: 4px;
}
.weilo-change-modal-box .button.weilo-change-close-modal {
    margin-right: 10px;
    min-width: 110px;
}
.weilo-change-modal-box .button.button-primary.weilo-confirm-change {
    min-width: 160px;
    font-size: 16px;
    background:#cc491d !important;
    border-color:#cc491d !important;
    color:#fff !important;
    font-weight:600;
    transition: background 0.2s, color 0.2s;
}
.weilo-change-modal-box .button.button-primary.weilo-confirm-change:hover {
    background: #a63a13 !important;
    color: #fff !important;
}
/* Separación extra para la zona de botones */
.weilo-change-modal-box .weilo-change-modal-actions {
    margin-top: 35px !important;
    border-top: 1px solid #eee;
    padding-top: 22px;
    text-align: right;
}
/* 🔶 Estilos del modal de cancelación */
.weilo-cancel-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.weilo-modal-box {
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    max-width: 50%;
    text-align: left;
    position: relative;
    animation: fadeInScale .25s ease-out;
}
.weilo-modal-box h3 {
    color: #cc491d;
    font-size: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}
.weilo-refund-amount {
    font-size: 17px;
    color: #cc491d;
}
.weilo-refund-dates li {
    font-size: 14px;
    line-height: 1.4em;
    color: #000;
}
.button-primary.weilo-cancel-confirm {
    background:#cc491d !important;
    border-color:#cc491d !important;
    color:#fff !important;
    font-weight:600;
    transition: background 0.2s, color 0.2s;
}
.button-primary.weilo-cancel-confirm:hover {
    background: #a63a13 !important;
    color: #fff !important;
}
.weilo-open-cancel-modal {
    padding: 0 5px !important;
    background: none !important;
    color: #CC491D !important;
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(.9); }
    to   { opacity: 1; transform: scale(1); }
}