
.open-orders-page, .filled-orders-page, .new-order-page {

}

#container2 { 
   margin-top: 100px;
   position: relative; 
   left: -50%;
   transform: translatex(50%); 
}

.new-order-wrapper {
padding: 20px;
border: solid;
border-width: 0; 
border-radius: 6px;
box-shadow: 0 0 4px gray; 
margin-top: 20px;
}

.buttons-wrapper {
   display: inline-block;
}

.delete-wrapper, .filled-wrapper {
  display: inline-block; 
}

.side-menu {
  
  height: 100vh;
  background: linear-gradient(to right, #601cff, #731cff); 
  position: fixed;
  left: 0; 
  top: 0; 
  width: 200px;

  color: white;
  box-shadow: 0 0 8px gray; 
  
}

.menu-links-wrapper {
background: #3d3d3d; 
width: 100%;

margin-top: 100px;
box-shadow: inset 0 0 4px black;
}

.menu-link {
padding: 20px;
cursor: pointer;
}

.open-orders-link {
    border-top: solid;
    border-bottom: solid;
    border-color: #545454;
    border-width: 1px;
}

.clicked-link {

background: #4f4b4b;
box-shadow: inset 0 0 1px black; 

}