.print-name {
    box-sizing: border-box;
    margin: 0 8px 0 0;
    color: #000000d9;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: "tnum";
    display: inline-block;
    height: auto;
    padding: 0 7px;
    font-size: 12px;
    line-height: 20px;
    white-space: nowrap;
    background: #fafafa;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    opacity: 1;
    transition: all .3s;
}

.block-div div{
    display: flex !important;
    flex-flow: row wrap;
}
#app-drag {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  #drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
  }
  .drop-text {
    display: block;
    margin-bottom: 10px;
  }
  .image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }
  .draggable {
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border-radius: 6px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 20px 5px 5px 5px;
    height: 113px;
    box-shadow: 0 4px 10px 0 rgba(51, 51, 51, 0.25);
    width: 113px;
    cursor: grab;
    border-radius: 5px;
    transition: transform 0.2s ease;
  }
  .remove-icon {
    cursor: pointer;
    left: -6px;
    background: #EDEDE8;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    margin-top: -6px;
    box-shadow: 0 4px 10px 0 rgba(51, 51, 51, 0.25);
  }
  .draggable:active {
    cursor: grabbing;
  }
  .img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }
  #upload-button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  #upload-button:disabled {
    background-color: #dddddd;
    color: #666666;
    cursor: not-allowed;
  }
  /* Optional styles for better visual feedback during dragging */
  .draggable:hover {
    transform: scale(1.1);
    z-index: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  }
  .draggable:active {
    transform: scale(1.2);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  }
  /* Additional styles for vuedraggable */
  .drag-over {
    background-color: #f0f0f0;
  }
  .default-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.7); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Add any other styles for your default overlay */
  }
  .default-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #3498db;
    padding: 8px 16px;
    border-radius: 5px;
  }
