#fondo-confirmacion {
    display: none; /* O 'flex' si lo necesitas visible */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro semi-transparente */  
}

#div-confirmacion {
    position: absolute;
    display: flex;
    width: 80%;
    top: 30%;
    left:10%;
    height: 20%;
    background-color: rgb(92, 6, 6);
    border-radius: 20px;
    border: 2px solid black;
    box-shadow: 0px 0px 40px white;
}

#div-mensaje-confirmacion{
    display: flex;
    position: absolute;
    font-family: poppins;
    color: white;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    top: 25%;
    width: 100%;
}

#botones-confirmacion{
    position: absolute;
    top:60%;
    width: 90%;
    left:5%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cancelar-confirmacion{ 
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2); 
    border-radius: 20px;
    border: 2px, solid white;
    font-family: poppins;
    color: white;
    font-size: 40px;   
    margin: 10px; 
}

#cancelar-confirmacion:hover{
    box-shadow: 0px 0px 40px white;  
}

#enviar-confirmacion{ 
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2); 
    border-radius: 20px;
    border: 2px, solid white;
    font-family: poppins;
    color: white;
    font-size: 40px;    
    margin: 10px; 
}

#enviar-confirmacion:hover{
    box-shadow: 0px 0px 40px white;  
}