#seating-layout-container {
  position: relative;
  overflow: auto;
  /* padding: 50px; */

  .guest {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 12px;
    color: #333;
    max-width: 40px;
  }

  .table-header {}
  .table-header-title {}
  .table-header-subtitle {}

  .table-container {
    position: absolute;
    padding: 50px;
    &:hover {
      /* outline: 4px solid rgb(255, 94, 236); */
      /* cursor: pointer; */
    }
  }

  .handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 5;
    /* background-color: rgb(255, 94, 236); */
  }

  .table-row-guest {
    z-index: 10;
  }

  .real-table {
    position: relative;
  }

  .rounded-table {
    position: relative;
    aspect-ratio: 1 / 1;
    /* width: 150px; */
    border-radius: 50%;
    background-color: rgb(226, 226, 226);
    /* height: 150px; */
    &:hover {
      outline: 4px solid rgb(255, 94, 236);
      cursor: pointer;
    }
  }

  .seat-name {
    font-size: 12px;
    color: #333;
    max-width: 40px;
    pointer-events: none; /* prevents interference with seat clicking */
  }



  .seat {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #7e7e7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    &.active {
      scale: 1.1;
      background-color: rgb(255, 94, 236);
    }
    .label {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #7e7e7e;
      border-radius: 50%;
    }
  }

  .seat:hover {
    transform: scale(1.15);
    background-color: rgb(255, 94, 236);
  }
}

#seating-container {
  background-color: #f0f0f0;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.backdrop {
  background-color: #f0f0f0;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.backdrop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.canvas-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.editor-container {

  /* #80a27c */

  .table {
    height: fit-content;
    
    .btn {
      transition: all 0.3s ease-in-out;
      visibility: hidden;
      opacity: 0;
    }
    &:hover {
      .btn {
        visibility: visible;
        opacity: 1;
      }
    }
  }

  .table-row {
    display: flex;
    padding: var(--size-2)
  }

  .table-header {
    border-bottom: 1px solid var(--color-border);
  }

  .droppable:not(.draggable-dropzone--occupied) {

    .draggable--is-dragging & {
      background-color: #e7f3e2;
    }
  }


  .table-row {
    border-bottom: 1px solid var(--color-border);
  }

  .draggable-mirror {
    .btn {
      display: none;
    }
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075)
    ;

    /* background-color: #7e7e7e; */
  }

  .item {
    height: 100%;
    cursor: grab;
  }
  .guest {
    padding-block: var(--size-1);
    padding-inline: var(--size-3);
    cursor: grab;
    &:hover {}
  }
  .dropzone {
    outline: solid 1px;
    height: 50px;
  }
  .draggable-dropzone--occupied {
    /* background: lightgreen; */
  }

}




.canvas {
  margin-top: 5px;
  /* transform: scale(0.5); */
  /* height: 8.5in;
  aspect-ratio: 1/1.294; */
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avery {
  display: inline-block;
  margin-left: 0.4in;
  margin-top: 0.8in;
  height: 3.10in;
  width: 2.36in;
}

.cut-lines {
  border: 1px dashed #e0e0e0;
}

.canvas__margin {
  /* background-color: #ff6565; */
  margin: 15px;
}

.table-seating-card {
  height: 384px;
  height: 888px;
}