image-uploader-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .image-grid {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }

  .image-grid::-webkit-scrollbar {
    height: 8px;
  }

  .image-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  .image-upload-box {
    width: 150px;
    height: 150px;
    border: 2px dashed #d3d3d3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  .image-upload-box:hover {
    background-color: #f7f7f7;
  }

  .image-grid-item {
    width: 150px;
    height: 150px;
    position: relative;
    border: 2px dashed #d3d3d3;
    border-radius: 8px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    flex-shrink: 0;
  }

  .image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .remove-image-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .remove-image-button:hover {
    background-color: #d9363e;
  }
  .upload-instructions {
    font-size: 12px;
  }