
.orders{
  border: 1px solid rgb(161, 164, 166);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  border-radius: 10px;
}

#orders-title{
  margin-top: 150px;
  margin-bottom: 30px;
  padding-left: 8%;
}

.table-thead{
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 2px;
}

#orders-container{
  margin: 0 8% 0 8%;
}

#user-orders{
  margin-bottom: 10px;
  position: relative;
}
#user-orders::after{
  content: '';
  position: absolute;
  height: 1px;
  width: 40%;
  left: 0;
  bottom: -1px;
  background-color: rgb(161, 164, 166);
}

#user-orders p {
  margin: 0;
}
#user-orders p span{
  font-weight: 500;
}

#Orders-table{
  width: 100%;
}

.orders-btn{
  display: inline-block;
  padding: 5px 8px 5px 8px;
  margin-top: 10px;
  margin-right: 10%;
  margin-left: auto;
}