/*############################################################################################################
//  Droits d'auteur © 2022-2023 P.ink, l'ancre d'une vie Tous droits réservés, en collaboration avec OptimalC
//############################################################################################################*/

.alertDIV{
    position: fixed;
    background-color: white;
    border: solid 3px;
    border-radius: 5px;
    top:calc(100% - 150px);
    left:calc(100% - 300px);
    width:294px;
    height:144px;
    z-index:1280;

}

.alertDIV .close{
    position: absolute;
    width:25px;
    height:15px;
    left:calc(100% - 25px);
    top:0;
    margin:0;
    text-align:center;  
    padding: 10px 0; 
}

.alertDIV .close:hover{
  cursor: pointer;
}


.alertDIV .title{
  font-weight: bolder;
  height : 15px;
  border-bottom: double 3px;
  background-color: orange;
  margin-bottom: 20px;
  text-align: center;
  padding: 10px 0;
}

/* Pop-up centré, affiché 3 secondes (toast) */
.alertToast{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 280px;
    max-width: 90vw;
    padding: 20px 28px;
    background-color: #fff;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-size: 1rem;
    text-align: center;
    z-index: 2000;
    color: #1b5e20;
}
