body{
margin:0;
background:transparent;
}

/* CONTENEUR */
.widget-container{
width:300px;
height:300px;
margin:auto;
position:relative;
overflow:hidden;
}

/* WIDGET */
.sc-status-widget{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}


/* SLIDE */
#slideBox{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

display:flex;
justify-content:center;
align-items:center;

opacity:0; /* invisible */
visibility:hidden; /* caché */
transition:opacity 1.6s ease;

z-index:2;
}
/* IMAGE */
#slide{
width:100%;
height:100%;
object-fit:cover;

border:1px solid black;
box-sizing:border-box;

/* 🔥 IMPORTANT */
padding:2px; /* crée de l’espace pour voir le cadre */
background:black; /* donne un vrai effet cadre */
}

/* nettoyage widget */
.sc-status-widget div[style*="height: 25"],
.sc-status-widget div[style*="progress"]{
display:none !important;
}