#dws-app-popup{
position:fixed;
left:20px;
bottom:20px;
width:360px;
max-width:calc(100% - 40px);
background:#fff;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.18);
z-index:999999;
padding:20px;
font-family:Arial,sans-serif;
display:none;
animation:dwsSlide .4s ease;
}

@keyframes dwsSlide{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.dws-close{
position:absolute;
right:15px;
top:12px;
cursor:pointer;
font-size:22px;
color:#999;
}

.dws-header{
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;
}

.dws-header img{
width:60px;
height:60px;
border-radius:15px;
}

.dws-title{
font-size:20px;
font-weight:bold;
}

.dws-text{
font-size:14px;
line-height:1.6;
color:#555;
margin-bottom:20px;
}

.dws-buttons{
display:flex;
gap:10px;
}

.dws-install{
flex:1;
background:#d71920;
color:#fff;
border:none;
padding:12px;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}

.dws-later{
flex:1;
background:#eee;
border:none;
padding:12px;
border-radius:10px;
cursor:pointer;
}

@media(max-width:600px){

#dws-app-popup{

left:10px;
right:10px;
bottom:10px;
width:auto;

}

}