#preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  #preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    background: #f9f9f9;
  }

  input[type="file"] {
    margin-bottom: 20px;
  }

  .float-right{
     float: right;
  }
  
  /* Main multi-select box height & alignment */
.select2-container--default .select2-selection--multiple {
    min-height: 38px;                 /* match Bootstrap input */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 2px 6px;
}

/* Selected tag (chip) */
.select2-container--default .select2-selection--multiple 
.select2-selection__choice {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin: 2px 4px 2px 0;
    padding: 2px 6px;
    font-size: 13px;
}

/* Text inside the selected tag (your part) */
.select2-container--default .select2-selection--multiple 
.select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px;
    color: #000;
}

/* Remove (×) icon */
.select2-container--default .select2-selection--multiple 
.select2-selection__choice__remove {
    color: #666;
    margin-right: 4px;
}

.select2-container--default .select2-selection--multiple 
.select2-selection__choice__remove:hover {
    color: #dc3545;
}

/* Input cursor alignment */
.select2-container--default .select2-search--inline .select2-search__field {
    margin-top: 0;
    height: 26px;
}

.select2-container--default
.select2-search--inline
.select2-search__field {
    width: auto !important;
    min-width: 80px;
}