#detallescon {
    display: none;
    position: fixed;
    z-index: 1;
    width: 90%;
    left: 5%;
    height: 80%;
    top: 10%;
    background-color: #ffffff;
    border: 3px solid #cccccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#resumencon {
    display: none;
    position: fixed;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
    z-index: 1;
    width: 90%;
    left: 5%;
    height: 80%;
    top: 10%;
    background-color: #ffffff;
    border: 3px solid #cccccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.centrado {
    text-align: center;
}

#cerrarDetalles {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
}

#cerrarResumen {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
}

#cerrarDetalles:hover {
    background-color: #cc0000;
}