/* --- TARJETA FLOTANTE DE NOTIFICACIONES PUSH (FORZADA A LA IZQUIERDA) --- */
.vpp-push-banner {
    position: fixed !important;
    top: 0px !important;
    left: 20px !important;
    right: auto !important;
    width: 360px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    font-family: inherit;
    border-top: 4px solid #1d3557;
    animation: vppSlideLeft 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes vppSlideLeft {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vpp-push-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.vpp-push-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vpp-push-icon {
    font-size: 32px;
    line-height: 1;
}

.vpp-push-text h4 {
    margin: 0 0 4px 0;
    font-size: 17px;
    color: #111;
    font-weight: 700;
}

.vpp-push-text p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.vpp-push-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 5px;
}

.vpp-btn-permitir {
    background: #0f2c59;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    flex: 1;
    text-align: center;
    transition: background 0.2s;
}

.vpp-btn-permitir:hover {
    background: #1d3557;
}

.vpp-btn-cerrar {
    background: transparent;
    color: #0f2c59;
    border: none;
    padding: 10px 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.vpp-btn-cerrar:hover {
    color: #000;
}

@media (max-width: 480px) {
    .vpp-push-banner {
        top: 15px;
        left: 15px;
        right: 15px;
        width: auto;
        max-width: none;
    }
}