.unassigned-guest-list {
  /* width: 20%; */
  float: left;
  background-color: #bfe4ff;
  border: dashed 4px transparent;
  border-radius: 4px;
  margin: 10px auto 30px;
  padding: 10px;
}

.table-organization {
  width: 80%;
  float: right;

  h2 {
    text-align: center;
  }
}

.dropzone {
  background-color: #bfe4ff;
  border: dashed 4px transparent;
  border-radius: 4px;
  margin: 10px auto 30px;
  padding: 10px;
  width: 90%;
  transition: background-color 0.3s;
}

.drop-active {
  border-color: #aaa;
}

.guest {
  margin: 0 5px;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.guest-assigned {
  color: white;
  background-color: green;
  width: 98%;
  height: 98%;
}

.guest-unassigned {
  width: 120px;
  height: 40px;
  color: white;
  background-color: red;
  margin-bottom: 10px;
  /* display: flex; */
  align-items: center;
}

.guest-unconfirmed {
  border: 1px dashed yellow;
}

.guest-confirmed {
  border: 1px solid yellow;
}

.table-name {
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  display: flex
}

.seat {
  background-color: brown;
  width: 17%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table {
  background-color: #bfe4ff;
  border: dashed 4px transparent;
  border-radius: 4px;
  margin: 10px auto 30px;
  padding: 10px;
  width: 90%;
  height: 260%;
  transition: background-color 0.3s;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}