.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  border-radius: 6px;
  width: 300px;
  overflow: hidden;
  position: relative;
}

.modal-header {
  background-color: #474c86;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.titleModal {
  margin: 0;
  font-size: 16px;
  color: var(--cnen-bco);
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #000;
}

.modal-body {
  padding: 20px;
  text-align: center;
}

.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.modal-footer button {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}

#cancelBtn {
  background-color: #ccc;
  border: none;
  border-radius: 4px;
}

#cancelBtn:hover {
  background-color: #a5a4a4;
}

#confirmLogoutBtn {
  background-color: #2e4a77;
  color: #fff;
  border: none;
  border-radius: 4px;
}

 #confirmLogoutBtn:hover {
  background-color: var(--azul-cnen-30);
}





   #modalConfirmacao {
      display: none; 
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
    }
    .modal-conteudo {
      background-color: white;
      margin: 15% auto;
      padding: 20px;
      width: 300px;
      border-radius: 5px;
      text-align: center;
    }
    .modal-botoes {
      margin-top: 20px;
    }
    .modal-botoes button {
      margin: 0 10px;
    }