.ff-excel-color-selector {
  position: absolute;
  width: 14px;
  height: 3px;
  bottom: 3px;
  z-index: 200;
  box-shadow: 0px 0px 1px var(--text-color);
  transform: scale(1);
  transition: transform 0.2s ease;

  .ff-excel-color-selector-picker {
    width: 100%;
    height: 0;
    padding: 0;
    visibility: hidden;
  }
}

.ff-excel-color-selector:hover {
  transform: scale(1.2);
}

.color-selector-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
