.cie-upload-panel {
    font-family: inherit;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
  }
  .cie-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
}

.cie-size-cell {
  text-align: center;
}

.cie-size-cell label {
  font-size: 12px;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.cie-size-cell input {
  padding: 4px 6px;
  width: 100%;
  box-sizing: border-box;
}
  .cie-upload-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .cie-upload-row input {
    padding: 6px;
    width: 80px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
  }

  .cie-label {
    font-weight: bold;
    margin-bottom: 10px !important;
    margin-top: 5px !important;
    display: block;
  }

  .cie-color-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
  }

  .cie-color-palette {
    display: flex;
    gap: 6px;
    margin-top: 5px;
    flex-wrap: wrap;
  }

  .cie-color-box {
      width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .cie-color-box input[type="color"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .cie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .cie-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
  }

  .cie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .cie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
  }

  .cie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }

  .cie-switch input:checked + .cie-slider {
    background-color: #00c896;
  }

  .cie-switch input:checked + .cie-slider:before {
    transform: translateX(18px);
  }

  .cie-btn-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(60px, auto));
    gap: 10px;
    margin-top: 15px;
  }

  .cie-btn {
    padding: 6px 10px !important;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    background: #d4d4d4 !important;
  }

  .cie-rotation {
    margin-top: 15px;
  }

  .cie-rotation input[type="range"] {
    width: 100%;
  }

  .cie-badge {
    background: orange;
    color: white;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 5px;
  }
  .bulk-row {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-bottom: 10px !important;
}

.bulk-row select,
.bulk-row input[type="number"] {
  padding: 7px 10px !important;
  border: 1px solid #ccc !important;
  border-radius: 5px !important;
  font-size: 14px !important;
  min-width: 130px !important;
}

.bulk-row button {
  padding: 6px 12px !important;
  background: #dc3545 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}
