.kt-ui-file-input-label {
  display: inline-block;
  padding: 12px 18px;
  color: var(--kt-ui-file-input-color);
  background: var(--kt-ui-file-input-bg);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--ui-font-family-primary);
  transition: background-color 160ms linear;
}

.kt-ui-file-input-label:hover {
  background: var(--kt-ui-file-input-bg-hover);
}

.kt-ui-file-input-control {
  display: none;
}

.kt-ui-file-input-list {
  max-width: 300px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kt-ui-file-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kt-ui-file-item-name {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kt-ui-file-item-remove {
  flex-shrink: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--kt-ui-file-remove-btn-color);
  transition: color 160ms linear;
}

.kt-ui-file-item-remove:hover {
  color: var(--kt-ui-file-remove-btn-color-hover);
}
